You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ba...@apache.org on 2007/02/27 18:00:05 UTC

svn commit: r512324 - /jakarta/commons/proper/fileupload/trunk/xdocs/streaming.xml

Author: bayard
Date: Tue Feb 27 09:00:04 2007
New Revision: 512324

URL: http://svn.apache.org/viewvc?view=rev&rev=512324
Log:
Fixing classname in example as per FILEUPLOAD-126

Modified:
    jakarta/commons/proper/fileupload/trunk/xdocs/streaming.xml

Modified: jakarta/commons/proper/fileupload/trunk/xdocs/streaming.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/fileupload/trunk/xdocs/streaming.xml?view=diff&rev=512324&r1=512323&r2=512324
==============================================================================
--- jakarta/commons/proper/fileupload/trunk/xdocs/streaming.xml (original)
+++ jakarta/commons/proper/fileupload/trunk/xdocs/streaming.xml Tue Feb 27 09:00:04 2007
@@ -72,7 +72,7 @@
     InputStream stream = item.openStream();
     if (item.isFormField()) {
         System.out.println("Form field " + name + " with value "
-            + StreamUtil.asString(stream) + " detected.");
+            + Streams.asString(stream) + " detected.");
     } else {
         System.out.println("File field " + name + " with file name "
             + item.getName() + " detected.");



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org