You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2013/03/06 09:37:43 UTC

svn commit: r1453205 - /commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUpload.java

Author: simonetripodi
Date: Wed Mar  6 08:37:43 2013
New Revision: 1453205

URL: http://svn.apache.org/r1453205
Log:
trivial: code format, no functional modification

Modified:
    commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUpload.java

Modified: commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUpload.java
URL: http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUpload.java?rev=1453205&r1=1453204&r2=1453205&view=diff
==============================================================================
--- commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUpload.java (original)
+++ commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUpload.java Wed Mar  6 08:37:43 2013
@@ -16,7 +16,6 @@
  */
 package org.apache.commons.fileupload;
 
-
 /**
  * <p>High level API for processing file uploads.</p>
  *
@@ -45,18 +44,17 @@ public class FileUpload
 
     // ----------------------------------------------------------- Data members
 
-
     /**
      * The factory to use to create new form items.
      */
     private FileItemFactory fileItemFactory;
 
-
     // ----------------------------------------------------------- Constructors
 
-
     /**
-     * Constructs an uninitialised instance of this class. A factory must be
+     * Constructs an uninitialised instance of this class.
+     *
+     * A factory must be
      * configured, using <code>setFileItemFactory()</code>, before attempting
      * to parse requests.
      *
@@ -66,7 +64,6 @@ public class FileUpload
         super();
     }
 
-
     /**
      * Constructs an instance of this class which uses the supplied factory to
      * create <code>FileItem</code> instances.
@@ -79,10 +76,8 @@ public class FileUpload
         this.fileItemFactory = fileItemFactory;
     }
 
-
     // ----------------------------------------------------- Property accessors
 
-
     /**
      * Returns the factory class used when creating file items.
      *
@@ -93,7 +88,6 @@ public class FileUpload
         return fileItemFactory;
     }
 
-
     /**
      * Sets the factory class to use when creating file items.
      *
@@ -104,5 +98,4 @@ public class FileUpload
         this.fileItemFactory = factory;
     }
 
-
 }