Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@apache.org Received: (qmail 48671 invoked from network); 28 Dec 2002 21:25:51 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 28 Dec 2002 21:25:51 -0000 Received: (qmail 4735 invoked by uid 97); 28 Dec 2002 21:27:07 -0000 Delivered-To: qmlist-jakarta-archive-ant-dev@jakarta.apache.org Received: (qmail 4715 invoked by uid 97); 28 Dec 2002 21:27:07 -0000 Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 4693 invoked by uid 97); 28 Dec 2002 21:27:06 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Date: 28 Dec 2002 21:25:43 -0000 Message-ID: <20021228212543.6715.qmail@icarus.apache.org> From: costin@apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant RuntimeConfigurable.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N costin 2002/12/28 13:25:43 Modified: src/main/org/apache/tools/ant RuntimeConfigurable.java Log: Call project.replaceProperties(). Probably should call PropertyHelper directly, but Grant ( and others ) may extend project and override it. Revision Changes Path 1.22 +1 -1 jakarta-ant/src/main/org/apache/tools/ant/RuntimeConfigurable.java Index: RuntimeConfigurable.java =================================================================== RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/RuntimeConfigurable.java,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- RuntimeConfigurable.java 27 Dec 2002 18:11:15 -0000 1.21 +++ RuntimeConfigurable.java 28 Dec 2002 21:25:43 -0000 1.22 @@ -300,7 +300,7 @@ 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); -- To unsubscribe, e-mail: For additional commands, e-mail: