Browse Source

jdk1.4

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

+ 3
- 3
src/main/org/apache/tools/ant/taskdefs/Redirector.java View File

@@ -232,7 +232,7 @@ public class Redirector {
if (input == null) {
this.input = null;
} else {
this.input = input.clone();
this.input = (File[]) input.clone();
}
}
}
@@ -297,7 +297,7 @@ public class Redirector {
if (out == null) {
this.out = null;
} else {
this.out = out.clone();
this.out = (File[]) out.clone();
}
}
}
@@ -397,7 +397,7 @@ public class Redirector {
if (error == null) {
this.error = null;
} else {
this.error = error.clone();
this.error = (File[]) error.clone();
}
}
}


Loading…
Cancel
Save