donaldp 01/12/29 15:59:37
Modified: proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional
NetRexxC.java
Log:
Fix compile error that introduced when moved from Vector to ArrayList
Revision Changes Path
1.10 +2 -1
jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/NetRexxC.java
Index: NetRexxC.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/NetRexxC.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- NetRexxC.java 23 Dec 2001 14:17:40 -0000 1.9
+++ NetRexxC.java 29 Dec 2001 23:59:37 -0000 1.10
@@ -606,12 +606,13 @@
*/
private void copyFilesToDestination()
{
+ //FIXME: This should be zapped no ?
if( filecopyList.size() > 0 )
{
getLogger().info( "Copying " + filecopyList.size() + " file"
+ ( filecopyList.size() == 1 ? "" : "s" )
+ " to " + destDir.getAbsolutePath() );
- Iterator enum = filecopyList.keys();
+ Iterator enum = filecopyList.keySet().iterator();
while( enum.hasNext() )
{
String fromFile = (String)enum.next();
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>