Author: peterreilly
Date: Thu Nov 16 15:33:11 2006
New Revision: 475980

URL: http://svn.apache.org/viewvc?view=rev&rev=475980
Log:
opps forgot a map

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/types/resources/FailFast.java

Modified: 
ant/core/trunk/src/main/org/apache/tools/ant/types/resources/FailFast.java
URL: 
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/types/resources/FailFast.java?view=diff&rev=475980&r1=475979&r2=475980
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/types/resources/FailFast.java 
(original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/types/resources/FailFast.java 
Thu Nov 16 15:33:11 2006
@@ -60,7 +60,7 @@
     }
 
     private static synchronized void failFast(FailFast f) {
-        Set s = (Set) (map.get(f.parent));
+        Set s = (Set) (MAP.get(f.parent));
         if (!s.contains(f)) {
             throw new ConcurrentModificationException();
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to