You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by st...@apache.org on 2007/03/20 14:31:42 UTC

svn commit: r520384 - /ant/core/trunk/src/main/org/apache/tools/ant/util/FileUtils.java

Author: stevel
Date: Tue Mar 20 06:31:41 2007
New Revision: 520384

URL: http://svn.apache.org/viewvc?view=rev&rev=520384
Log:
no need to mark static methods as final

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/util/FileUtils.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/util/FileUtils.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/util/FileUtils.java?view=diff&rev=520384&r1=520383&r2=520384
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/util/FileUtils.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/util/FileUtils.java Tue Mar 20 06:31:41 2007
@@ -939,7 +939,7 @@
      * @throws IOException if the contents could not be read out from the
      *         reader.
      */
-    public static final String readFully(Reader rdr) throws IOException {
+    public static String readFully(Reader rdr) throws IOException {
         return readFully(rdr, BUF_SIZE);
     }
 
@@ -954,7 +954,7 @@
      * @throws IOException if the contents could not be read out from the
      *         reader.
      */
-    public static final String readFully(Reader rdr, int bufferSize)
+    public static String readFully(Reader rdr, int bufferSize)
         throws IOException {
         if (bufferSize <= 0) {
             throw new IllegalArgumentException("Buffer size must be greater "



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