peterreilly 2003/12/24 02:52:42
Modified: src/main/org/apache/tools/ant Tag: ANT_16_BRANCH
ComponentHelper.java
Log:
Sync with head
Revision Changes Path
No revision
No revision
1.28.2.2 +3 -1 ant/src/main/org/apache/tools/ant/ComponentHelper.java
Index: ComponentHelper.java
===================================================================
RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/ComponentHelper.java,v
retrieving revision 1.28.2.1
retrieving revision 1.28.2.2
diff -u -r1.28.2.1 -r1.28.2.2
--- ComponentHelper.java 17 Oct 2003 08:13:03 -0000 1.28.2.1
+++ ComponentHelper.java 24 Dec 2003 10:52:42 -0000 1.28.2.2
@@ -192,7 +192,9 @@
antTypeTable.put(def.getName(), def);
}
// add the parsed namespaces of the parent project
- checkedNamespaces.add(helper.checkedNamespaces);
+ for (Iterator i = helper.checkedNamespaces.iterator(); i.hasNext();)
{
+ checkedNamespaces.add(i.next());
+ }
}
/** Factory method to create the components.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]