Browse Source

opps forgot a map

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@475980 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 19 years ago
parent
commit
664aa11fd0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/types/resources/FailFast.java

+ 1
- 1
src/main/org/apache/tools/ant/types/resources/FailFast.java View File

@@ -60,7 +60,7 @@ import java.util.ConcurrentModificationException;
} }


private static synchronized void failFast(FailFast f) { 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)) { if (!s.contains(f)) {
throw new ConcurrentModificationException(); throw new ConcurrentModificationException();
} }


Loading…
Cancel
Save