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/07 20:37:07 UTC

svn commit: r504659 - /jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java

Author: bayard
Date: Wed Feb  7 11:37:06 2007
New Revision: 504659

URL: http://svn.apache.org/viewvc?view=rev&rev=504659
Log:
IO-113 points out that readFileToString(File) was not static. *hits self*

Modified:
    jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java

Modified: jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java?view=diff&rev=504659&r1=504658&r2=504659
==============================================================================
--- jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java (original)
+++ jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java Wed Feb  7 11:37:06 2007
@@ -975,7 +975,7 @@
      * @throws IOException in case of an I/O error
      * @since Commons IO 1.3
      */
-    public String readFileToString(File file) throws IOException {
+    public static String readFileToString(File file) throws IOException {
         return readFileToString(file, null);
     }
 



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