Browse Source

JDK 1.2 compatibility

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

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

@@ -895,7 +895,7 @@ public final class IntrospectionHelper implements BuildListener {
throws InvocationTargetException, IllegalAccessException {
m.invoke(parent,
new Boolean[] {
Boolean.valueOf(Project.toBoolean(value))});
new Boolean(Project.toBoolean(value))});
}

};


Loading…
Cancel
Save