Author: markt
Date: Wed Mar 27 21:01:52 2013
New Revision: 1461849
URL: http://svn.apache.org/r1461849
Log:
Update Commons FileUpload 1.3
Modified:
tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/ (props changed)
tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/disk/DiskFileItem.java
tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/package-info.java
Propchange: tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/
------------------------------------------------------------------------------
Merged
/commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload:r1458580,1458597,1458928,1458936,1459121,1459183-1459184,1459188,1459901,1460343
Modified:
tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/disk/DiskFileItem.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/disk/DiskFileItem.java?rev=1461849&r1=1461848&r2=1461849&view=diff
==============================================================================
---
tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/disk/DiskFileItem.java
(original)
+++
tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/disk/DiskFileItem.java
Wed Mar 27 21:01:52 2013
@@ -112,7 +112,7 @@ public class DiskFileItem
* The content type passed by the browser, or <code>null</code> if
* not defined.
*/
- private String contentType;
+ private final String contentType;
/**
* Whether or not this item is a simple form field.
@@ -122,7 +122,7 @@ public class DiskFileItem
/**
* The original filename in the user's filesystem.
*/
- private String fileName;
+ private final String fileName;
/**
* The size of the item, in bytes. This is used to cache the size when a
@@ -134,12 +134,12 @@ public class DiskFileItem
/**
* The threshold above which uploads will be stored on disk.
*/
- private int sizeThreshold;
+ private final int sizeThreshold;
/**
* The directory in which uploaded files will be stored, if stored on disk.
*/
- private File repository;
+ private final File repository;
/**
* Cached contents of the file.
Modified:
tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/package-info.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/package-info.java?rev=1461849&r1=1461848&r2=1461849&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/package-info.java
(original)
+++ tomcat/trunk/java/org/apache/tomcat/util/http/fileupload/package-info.java
Wed Mar 27 21:01:52 2013
@@ -18,7 +18,7 @@
/**
* <p><b>NOTE:</b> This code has been copied from commons-fileupload trunk
- * revision 1458500 and commons-io 1.4 and package renamed to avoid clashes
with
+ * 1.3 and commons-io 1.4 and package renamed to avoid clashes with
* any web apps that may wish to use these libraries.
* </p>
* <p>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]