Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 564C7D4B8 for ; Wed, 6 Mar 2013 08:51:54 +0000 (UTC) Received: (qmail 16780 invoked by uid 500); 6 Mar 2013 08:51:53 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 16699 invoked by uid 500); 6 Mar 2013 08:51:52 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 16659 invoked by uid 99); 6 Mar 2013 08:51:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Mar 2013 08:51:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Mar 2013 08:51:46 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id DD4F5238889B; Wed, 6 Mar 2013 08:51:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1453216 - /commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/DiskFileUpload.java Date: Wed, 06 Mar 2013 08:51:25 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130306085125.DD4F5238889B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Wed Mar 6 08:51:25 2013 New Revision: 1453216 URL: http://svn.apache.org/r1453216 Log: trivial: code format, no functional modification Modified: commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/DiskFileUpload.java Modified: commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/DiskFileUpload.java URL: http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/DiskFileUpload.java?rev=1453216&r1=1453215&r2=1453216&view=diff ============================================================================== --- commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/DiskFileUpload.java (original) +++ commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/DiskFileUpload.java Wed Mar 6 08:51:25 2013 @@ -52,16 +52,13 @@ public class DiskFileUpload // ----------------------------------------------------------- Data members - /** * The factory to use to create new form items. */ private DefaultFileItemFactory fileItemFactory; - // ----------------------------------------------------------- Constructors - /** * Constructs an instance of this class which uses the default factory to * create FileItem instances. @@ -76,7 +73,6 @@ public class DiskFileUpload this.fileItemFactory = new DefaultFileItemFactory(); } - /** * Constructs an instance of this class which uses the supplied factory to * create FileItem instances. @@ -92,10 +88,8 @@ public class DiskFileUpload this.fileItemFactory = fileItemFactory; } - // ----------------------------------------------------- Property accessors - /** * Returns the factory class used when creating file items. * @@ -109,7 +103,6 @@ public class DiskFileUpload return fileItemFactory; } - /** * Sets the factory class to use when creating file items. The factory must * be an instance of DefaultFileItemFactory or a subclass @@ -125,7 +118,6 @@ public class DiskFileUpload this.fileItemFactory = (DefaultFileItemFactory) factory; } - /** * Returns the size threshold beyond which files are written directly to * disk. @@ -141,7 +133,6 @@ public class DiskFileUpload return fileItemFactory.getSizeThreshold(); } - /** * Sets the size threshold beyond which files are written directly to disk. * @@ -156,7 +147,6 @@ public class DiskFileUpload fileItemFactory.setSizeThreshold(sizeThreshold); } - /** * Returns the location used to temporarily store files that are larger * than the configured size threshold. @@ -172,7 +162,6 @@ public class DiskFileUpload return fileItemFactory.getRepository().getPath(); } - /** * Sets the location used to temporarily store files that are larger * than the configured size threshold. @@ -188,10 +177,8 @@ public class DiskFileUpload fileItemFactory.setRepository(new File(repositoryPath)); } - // --------------------------------------------------------- Public methods - /** * Processes an RFC 1867 * compliant multipart/form-data stream. If files are stored