From e9c9b00132450f5e9d68e521130571d938308f65 Mon Sep 17 00:00:00 2001 From: Costin Manolache Date: Sat, 28 Dec 2002 21:25:43 +0000 Subject: [PATCH] Call project.replaceProperties(). Probably should call PropertyHelper directly, but Grant ( and others ) may extend project and override it. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273713 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/RuntimeConfigurable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/RuntimeConfigurable.java b/src/main/org/apache/tools/ant/RuntimeConfigurable.java index 90847c92e..d3a203a7a 100644 --- a/src/main/org/apache/tools/ant/RuntimeConfigurable.java +++ b/src/main/org/apache/tools/ant/RuntimeConfigurable.java @@ -300,7 +300,7 @@ public class RuntimeConfigurable implements Serializable { String value=(String) attMap.get(name); // reflect these into the target - value = ProjectHelper.replaceProperties(p, value,p.getProperties()); + value = p.replaceProperties(value); try { ih.setAttribute(p, target, name.toLowerCase(Locale.US), value);