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/07 13:18:51 UTC

svn commit: r1453802 - /commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java

Author: simonetripodi
Date: Thu Mar  7 12:18:51 2013
New Revision: 1453802

URL: http://svn.apache.org/r1453802
Log:
@todo is not a valid javadoc tag

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

Modified: commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java
URL: http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java?rev=1453802&r1=1453801&r2=1453802&view=diff
==============================================================================
--- commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java (original)
+++ commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java Thu Mar  7 12:18:51 2013
@@ -359,9 +359,9 @@ public class DiskFileItem
      * character encoding.  This method uses {@link #get()} to retrieve the
      * contents of the file.
      *
-     * @return The contents of the file, as a string.
+     * <b>TODO</b> Consider making this method throw UnsupportedEncodingException.
      *
-     * @todo Consider making this method throw UnsupportedEncodingException.
+     * @return The contents of the file, as a string.
      */
     public String getString() {
         byte[] rawdata = get();