conor 01/07/25 07:17:37
Modified: src/main/org/apache/tools/ant/taskdefs Property.java
Log:
Old bug reverled by my recent changes.
Revision Changes Path
1.30 +2 -1
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Property.java
Index: Property.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Property.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- Property.java 2001/07/23 16:31:56 1.29
+++ Property.java 2001/07/25 14:17:37 1.30
@@ -255,8 +255,9 @@
while (e.hasMoreElements()) {
String name = (String) e.nextElement();
String value = (String) props.getProperty(name);
+
String v = ProjectHelper.replaceProperties(project, value,
project.getProperties());
- addProperty(name, value);
+ addProperty(name, v);
}
}