Like a noob, I missed some things... broke the compilation.

This commit is contained in:
mweaver
2009-04-22 15:24:26 -06:00
parent f68f1e5888
commit 6b89ecd0ee
18 changed files with 34 additions and 30 deletions

View File

@ -37,7 +37,7 @@ public class IdentityHashMap<K, V> implements Map<K, V> {
return map.containsValue(value);
}
public V get(K key) {
public V get(Object key) {
return map.get(key);
}
@ -49,7 +49,7 @@ public class IdentityHashMap<K, V> implements Map<K, V> {
map.putAll(elts);
}
public V remove(K key) {
public V remove(Object key) {
return map.remove(key);
}