mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
Like a noob, I missed some things... broke the compilation.
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user