stevel      2003/02/27 21:39:47

  Modified:    java/src/org/apache/axis/wsdl/symbolTable
                        DefinedElement.java
               java/src/org/apache/axis/attachments DimeBodyPart.java
                        DimeMultiPart.java DimeTypeNameFormat.java
               java/src/org/apache/axis FaultableHandler.java
               java/src/org/apache/axis/message MessageElement.java
               java/src/org/apache/axis/types Schema.java
               java/src/org/apache/axis/encoding SerializationContext.java
               java/src/org/apache/axis/utils tcpmon.java
  Log:
  we will have no extra semicolons in this source!
  
  Xdoclet1.2 whines about it, and I am now running xdoclet over the source to create 
web.xml instances
  
  Revision  Changes    Path
  1.3       +2 -2      
xml-axis/java/src/org/apache/axis/wsdl/symbolTable/DefinedElement.java
  
  Index: DefinedElement.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/wsdl/symbolTable/DefinedElement.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DefinedElement.java       20 Jun 2002 20:35:47 -0000      1.2
  +++ DefinedElement.java       28 Feb 2003 05:39:45 -0000      1.3
  @@ -71,11 +71,11 @@
        */
       public DefinedElement(QName pqName, TypeEntry refType, Node pNode, String dims) 
{
           super(pqName, refType, pNode, dims);
  -    };
  +    }
       /**
        * Create an element type defined directly.               
        */
       public DefinedElement(QName pqName, Node pNode) {
           super(pqName, pNode);
       }
  -};
  +}
  
  
  
  1.18      +1 -1      xml-axis/java/src/org/apache/axis/attachments/DimeBodyPart.java
  
  Index: DimeBodyPart.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/attachments/DimeBodyPart.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- DimeBodyPart.java 18 Feb 2003 12:50:56 -0000      1.17
  +++ DimeBodyPart.java 28 Feb 2003 05:39:45 -0000      1.18
  @@ -122,7 +122,7 @@
   
       static final long MAX_DWORD = 0xffffffffL;
   
  -    protected DimeBodyPart() {}; //do not use.
  +    protected DimeBodyPart() {} //do not use.
   
       /**
        * Create a DIME Attachment Part.
  
  
  
  1.3       +1 -1      xml-axis/java/src/org/apache/axis/attachments/DimeMultiPart.java
  
  Index: DimeMultiPart.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/attachments/DimeMultiPart.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DimeMultiPart.java        29 Aug 2002 20:05:51 -0000      1.2
  +++ DimeMultiPart.java        28 Feb 2003 05:39:45 -0000      1.3
  @@ -71,7 +71,7 @@
       static final long transSize = Integer.MAX_VALUE;
       static final byte CURRENT_VERSION = 1; //Anything above this we don't support.
       protected java.util.Vector parts = new java.util.Vector(); 
  -    public DimeMultiPart() {};
  +    public DimeMultiPart() {}
       public void addBodyPart(DimeBodyPart part) {
           parts.add(part);
       }
  
  
  
  1.8       +2 -2      
xml-axis/java/src/org/apache/axis/attachments/DimeTypeNameFormat.java
  
  Index: DimeTypeNameFormat.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/attachments/DimeTypeNameFormat.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- DimeTypeNameFormat.java   11 Dec 2002 22:38:08 -0000      1.7
  +++ DimeTypeNameFormat.java   28 Feb 2003 05:39:45 -0000      1.8
  @@ -70,10 +70,10 @@
   
   public final class DimeTypeNameFormat {
       private byte format = 0; 
  -    private DimeTypeNameFormat() {}; 
  +    private DimeTypeNameFormat() {}
       private DimeTypeNameFormat(byte f) {
           format = f;
  -    }; 
  +    }
       //Current type values.
       static final byte NOCHANGE_VALUE = 0x00; // indicates the type is unchanged 
from the previous record (used for chunking)
       static final byte MIME_VALUE = 0x01; //indicates the type is specified as a 
MIME media-type
  
  
  
  1.47      +1 -1      xml-axis/java/src/org/apache/axis/FaultableHandler.java
  
  Index: FaultableHandler.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/FaultableHandler.java,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- FaultableHandler.java     11 Dec 2002 22:38:06 -0000      1.46
  +++ FaultableHandler.java     28 Feb 2003 05:39:45 -0000      1.47
  @@ -163,7 +163,7 @@
           log.debug("Enter: FaultableHandler::onFault");
           workHandler.onFault( msgContext );
           log.debug("Exit: FaultableHandler::onFault");
  -    };
  +    }
   
       public boolean canHandleBlock(QName qname) {
           return( workHandler.canHandleBlock(qname) );
  
  
  
  1.145     +1 -1      xml-axis/java/src/org/apache/axis/message/MessageElement.java
  
  Index: MessageElement.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/message/MessageElement.java,v
  retrieving revision 1.144
  retrieving revision 1.145
  diff -u -r1.144 -r1.145
  --- MessageElement.java       12 Feb 2003 19:01:12 -0000      1.144
  +++ MessageElement.java       28 Feb 2003 05:39:46 -0000      1.145
  @@ -284,7 +284,7 @@
       }
   
       public boolean isDirty() { return _isDirty; }
  -    public void setDirty(boolean dirty) { _isDirty = dirty; };
  +    public void setDirty(boolean dirty) { _isDirty = dirty; }
   
       public boolean isRoot() { return _isRoot; }
       public String getID() { return id; }
  
  
  
  1.2       +1 -1      xml-axis/java/src/org/apache/axis/types/Schema.java
  
  Index: Schema.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/types/Schema.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Schema.java       24 Nov 2002 14:43:59 -0000      1.1
  +++ Schema.java       28 Feb 2003 05:39:46 -0000      1.2
  @@ -182,7 +182,7 @@
           field.setXmlName(new javax.xml.namespace.QName("", "id"));
           field.setXmlType(new 
javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema";, "ID"));
           typeDesc.addFieldDesc(field);
  -    };
  +    }
   
       /**
        * Return type metadata object
  
  
  
  1.86      +1 -1      
xml-axis/java/src/org/apache/axis/encoding/SerializationContext.java
  
  Index: SerializationContext.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/encoding/SerializationContext.java,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -r1.85 -r1.86
  --- SerializationContext.java 11 Dec 2002 22:38:14 -0000      1.85
  +++ SerializationContext.java 28 Feb 2003 05:39:46 -0000      1.86
  @@ -279,7 +279,7 @@
        * @param p2 starting index in array
        * @param p3 length to write
        */
  -    public void writeChars(char [] p1, int p2, int p3) throws IOException;;
  +    public void writeChars(char [] p1, int p2, int p3) throws IOException;
   
       /**
        * Convenience operation to write out (to Writer) the String
  
  
  
  1.48      +0 -2      xml-axis/java/src/org/apache/axis/utils/tcpmon.java
  
  Index: tcpmon.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/utils/tcpmon.java,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- tcpmon.java       26 Jan 2003 14:50:25 -0000      1.47
  +++ tcpmon.java       28 Feb 2003 05:39:46 -0000      1.48
  @@ -389,7 +389,6 @@
                           delayTimeLabel.setForeground(color);
                       }
                   }
  -                ;
               }
               );
   
  @@ -454,7 +453,6 @@
                               */
                           }
                       }
  -                    ;
                   }
               );
   
  
  
  

Reply via email to