Browse Source

use FileUtils in a static way - submitted by Kevin Jackson

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@328709 13f79535-47bb-0310-9956-ffa450edef68
master
Antoine Levy-Lambert 19 years ago
parent
commit
e02b442a00
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Concat.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Concat.java View File

@@ -571,7 +571,7 @@ public class Concat extends Task {
throw new BuildException("Error while concatenating: " throw new BuildException("Error while concatenating: "
+ ioex.getMessage(), ioex); + ioex.getMessage(), ioex);
} finally { } finally {
FILE_UTILS.close(os);
FileUtils.close(os);
} }
} }




Loading…
Cancel
Save