From 5e67dc2a689dd46fc9bf25ed73030942cea1dff2 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Wed, 31 Jul 2002 07:04:48 +0000 Subject: [PATCH] merge bug fix from 1.5 branch. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273189 13f79535-47bb-0310-9956-ffa450edef68 --- WHATSNEW | 2 ++ src/main/org/apache/tools/ant/taskdefs/Property.java | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/WHATSNEW b/WHATSNEW index d29f3ccc4..a9f544edc 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -23,6 +23,8 @@ Fixed bugs: * If a task got redefined via , it lost its child elements. +* 's classpathref attribute was broken. + Other changes: -------------- diff --git a/src/main/org/apache/tools/ant/taskdefs/Property.java b/src/main/org/apache/tools/ant/taskdefs/Property.java index 8d2083d45..dfcc51b55 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Property.java +++ b/src/main/org/apache/tools/ant/taskdefs/Property.java @@ -282,8 +282,9 @@ public class Property extends Task { } /** - * the classpath to use when lookingup a resource, + * the classpath to use when looking up a resource, * given as reference to a <path> defined elsewhere + */ public void setClasspathRef(Reference r) { createClasspath().setRefid(r); }