Fix bug detected by Eclipse compiler

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1300072 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-03-13 11:03:22 +00:00
parent 0499117ad4
commit 028f528194
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ public interface MultiMap<K, V> extends IterableMap<K, Object> {
* @throws ClassCastException if the key is of an invalid type
* @throws NullPointerException if the key is null and null keys are invalid
*/
Object get(K key);
Object get(Object key); // Cannot use get(K key) as that does not properly implement Map#get
/**
* Checks whether the map contains the value specified.
@ -143,7 +143,7 @@ public interface MultiMap<K, V> extends IterableMap<K, Object> {
* @throws ClassCastException if the key is of an invalid type
* @throws NullPointerException if the key is null and null keys are invalid
*/
Object remove(K key);
Object remove(Object key); // Cannot use remove(K key) as that does not properly implement Map#remove
/**
* Gets a collection containing all the values in the map.