mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
implement Hashtable.toString() (defer to HashMap)
This commit is contained in:
@ -11,6 +11,10 @@ public class Hashtable<K, V> implements Map<K, V> {
|
||||
this(0);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return map.toString();
|
||||
}
|
||||
|
||||
public synchronized int size() {
|
||||
return map.size();
|
||||
}
|
||||
|
Reference in New Issue
Block a user