Browse Source

JDK 1.3 doesn't have that constructor (at least not public)

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278429 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 20 years ago
parent
commit
1ec234ddb8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/EchoXML.java

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

@@ -62,7 +62,7 @@ public class EchoXML extends XMLFragment {
try {
OutputStream os = null;
if (file != null) {
os = new FileOutputStream(file, append);
os = new FileOutputStream(file.getAbsolutePath(), append);
} else {
os = new LogOutputStream(this, Project.MSG_INFO);
}


Loading…
Cancel
Save