--- jsr166/src/main/java/util/AbstractMap.java 2005/05/14 01:52:24 1.9 +++ jsr166/src/main/java/util/AbstractMap.java 2005/05/16 05:03:18 1.10 @@ -85,8 +85,8 @@ public abstract class AbstractMap i * finding such an entry, false is returned. Note that this * implementation requires linear time in the size of the map. * - * @throws NullPointerException {@inheritDoc} * @throws ClassCastException {@inheritDoc} + * @throws NullPointerException {@inheritDoc} */ public boolean containsValue(Object value) { Iterator> i = entrySet().iterator(); @@ -116,8 +116,8 @@ public abstract class AbstractMap i * implementation requires linear time in the size of the map; many * implementations will override this method. * - * @throws NullPointerException {@inheritDoc} * @throws ClassCastException {@inheritDoc} + * @throws NullPointerException {@inheritDoc} */ public boolean containsKey(Object key) { Iterator> i = entrySet().iterator(); @@ -147,8 +147,8 @@ public abstract class AbstractMap i * implementation requires linear time in the size of the map; many * implementations will override this method. * - * @throws NullPointerException {@inheritDoc} * @throws ClassCastException {@inheritDoc} + * @throws NullPointerException {@inheritDoc} */ public V get(Object key) { Iterator> i = entrySet().iterator(); @@ -178,8 +178,8 @@ public abstract class AbstractMap i * UnsupportedOperationException. * * @throws UnsupportedOperationException {@inheritDoc} - * @throws NullPointerException {@inheritDoc} * @throws ClassCastException {@inheritDoc} + * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} */ public V put(K key, V value) { @@ -204,8 +204,8 @@ public abstract class AbstractMap i * contains a mapping for the specified key. * * @throws UnsupportedOperationException {@inheritDoc} - * @throws NullPointerException {@inheritDoc} * @throws ClassCastException {@inheritDoc} + * @throws NullPointerException {@inheritDoc} */ public V remove(Object key) { Iterator> i = entrySet().iterator(); @@ -247,8 +247,8 @@ public abstract class AbstractMap i * the put operation and the specified map is nonempty. * * @throws UnsupportedOperationException {@inheritDoc} - * @throws NullPointerException {@inheritDoc} * @throws ClassCastException {@inheritDoc} + * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} */ public void putAll(Map m) {