From 776c80d8ec4791029cc3601b7a6d0a1b0a45bc24 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Mon, 15 Nov 2004 08:25:41 +0000 Subject: [PATCH] Fix propertyset's builtin attribute git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277032 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/types/PropertySet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/types/PropertySet.java b/src/main/org/apache/tools/ant/types/PropertySet.java index 38cd262d0..23fcec50f 100644 --- a/src/main/org/apache/tools/ant/types/PropertySet.java +++ b/src/main/org/apache/tools/ant/types/PropertySet.java @@ -76,7 +76,7 @@ public class PropertySet extends DataType { public void setBuiltin(BuiltinPropertySetName b) { String built_in = b.getValue(); - assertValid("builtin", builtin); + assertValid("builtin", built_in); this.builtin = built_in; }