You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by an...@apache.org on 2005/10/26 21:07:26 UTC

svn commit: r328709 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java

Author: antoine
Date: Wed Oct 26 12:07:22 2005
New Revision: 328709

URL: http://svn.apache.org/viewcvs?rev=328709&view=rev
Log:
use FileUtils in a static way - submitted by Kevin Jackson

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java
URL: http://svn.apache.org/viewcvs/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java?rev=328709&r1=328708&r2=328709&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java Wed Oct 26 12:07:22 2005
@@ -571,7 +571,7 @@
             throw new BuildException("Error while concatenating: "
                                      + ioex.getMessage(), ioex);
         } finally {
-            FILE_UTILS.close(os);
+            FileUtils.close(os);
         }
     }
 



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