From 664aa11fd0f2a1657dc1681c97442a83cfe49b8d Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Thu, 16 Nov 2006 23:33:11 +0000 Subject: [PATCH] opps forgot a map git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@475980 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/types/resources/FailFast.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/types/resources/FailFast.java b/src/main/org/apache/tools/ant/types/resources/FailFast.java index 5c1ff0a9a..7d24e7137 100644 --- a/src/main/org/apache/tools/ant/types/resources/FailFast.java +++ b/src/main/org/apache/tools/ant/types/resources/FailFast.java @@ -60,7 +60,7 @@ import java.util.ConcurrentModificationException; } 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(); }