X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=blobdiff_plain;f=libjava%2Fclasspath%2Fjava%2Futil%2FIdentityHashMap.java;h=89ef034159b49bb3daadc678d2d9e64aff7af651;hp=6369fac691b1982fa30d22567a1f74624901e717;hb=64089cc9f030d8ef7972adb5d117e0b23f47d62b;hpb=96034e28360d660d7a7708807fcbc4b519574d8e diff --git a/libjava/classpath/java/util/IdentityHashMap.java b/libjava/classpath/java/util/IdentityHashMap.java index 6369fac691b..89ef034159b 100644 --- a/libjava/classpath/java/util/IdentityHashMap.java +++ b/libjava/classpath/java/util/IdentityHashMap.java @@ -705,12 +705,9 @@ public class IdentityHashMap extends AbstractMap /** * Returns true if the Iterator has more elements. * @return true if there are more elements - * @throws ConcurrentModificationException if the Map was modified */ public boolean hasNext() { - if (knownMod != modCount) - throw new ConcurrentModificationException(); return count > 0; }