ghoward     2003/08/18 14:55:40

  Modified:    src/java/org/apache/cocoon/servlet/multipart
                        PartInMemory.java PartOnDisk.java
  Log:
  Fix some javadoc typos spotted by Sonny Sukumar
  
  Revision  Changes    Path
  1.2       +4 -4      
cocoon-2.1/src/java/org/apache/cocoon/servlet/multipart/PartInMemory.java
  
  Index: PartInMemory.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/java/org/apache/cocoon/servlet/multipart/PartInMemory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PartInMemory.java 4 Apr 2003 13:19:05 -0000       1.1
  +++ PartInMemory.java 18 Aug 2003 21:55:40 -0000      1.2
  @@ -1,4 +1,4 @@
  -/*
  +32/*
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -66,7 +66,7 @@
       private int size;
   
       /**
  -     * Constructor FilePartArray
  +     * Constructor PartInMemory
        *
        * @param headers
        * @param in
  @@ -86,7 +86,7 @@
       }
   
       /**
  -     * Returns the filename
  +     * Returns the filesize in bytes
        */
       public int getSize() {
           return this.size;
  
  
  
  1.2       +3 -3      
cocoon-2.1/src/java/org/apache/cocoon/servlet/multipart/PartOnDisk.java
  
  Index: PartOnDisk.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/java/org/apache/cocoon/servlet/multipart/PartOnDisk.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PartOnDisk.java   4 Apr 2003 13:19:05 -0000       1.1
  +++ PartOnDisk.java   18 Aug 2003 21:55:40 -0000      1.2
  @@ -68,7 +68,7 @@
       private int size;
   
       /**
  -     * Constructor FilePartFile
  +     * Constructor PartOnDisk
        *
        * @param headers
        * @param file
  @@ -87,7 +87,7 @@
       }
   
       /**
  -     * Returns the file size
  +     * Returns the file size in bytes
        */
       public int getSize() {
           return this.size;
  
  
  

Reply via email to