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:
@ -48,7 +48,7 @@ public class Hashtable<K, V> implements Map<K, V> {
|
||||
return map.containsValue(value);
|
||||
}
|
||||
|
||||
public synchronized V get(K key) {
|
||||
public synchronized V get(Object key) {
|
||||
return map.get(key);
|
||||
}
|
||||
|
||||
@ -60,7 +60,7 @@ public class Hashtable<K, V> implements Map<K, V> {
|
||||
map.putAll(elts);
|
||||
}
|
||||
|
||||
public synchronized V remove(K key) {
|
||||
public synchronized V remove(Object key) {
|
||||
return map.remove(key);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user