Browse Source

Remove unecessary cast

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270896 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 23 years ago
parent
commit
0defa9394d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Property.java

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

@@ -295,7 +295,7 @@ public class Property extends Task {
Enumeration e = props.keys();
while (e.hasMoreElements()) {
String name = (String) e.nextElement();
String value = (String) props.getProperty(name);
String value = props.getProperty(name);

String v = project.replaceProperties(value);
addProperty(name, v);


Loading…
Cancel
Save