You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by pe...@apache.org on 2010/11/06 15:01:31 UTC

svn commit: r1032058 - /wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/io/IOUtils.java

Author: pete
Date: Sat Nov  6 14:01:31 2010
New Revision: 1032058

URL: http://svn.apache.org/viewvc?rev=1032058&view=rev
Log:
fixed doc for IOUtils.closeQuietly

Modified:
    wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/io/IOUtils.java

Modified: wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/io/IOUtils.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/io/IOUtils.java?rev=1032058&r1=1032057&r2=1032058&view=diff
==============================================================================
--- wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/io/IOUtils.java (original)
+++ wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/io/IOUtils.java Sat Nov  6 14:01:31 2010
@@ -23,7 +23,8 @@ import java.io.*;
  * <p>
  * This class provides static utility methods for input/output operations.
  * <ul>
- * <li>closeQuietly - these methods close a stream ignoring nulls and exceptions
+ * <li>closeQuietly - these method closes any kind of closeable resource, e.g. an input/output stream
+ * or reader/writer ignoring nulls and exceptions
  * <li>toXxx - these methods read data from a stream
  * <li>write - these methods write data to a stream
  * <li>copy - these methods copy all the data from one stream to another