mirror of
https://github.com/corda/corda.git
synced 2025-01-16 01:40:17 +00:00
implement Hashtable.toString() (defer to HashMap)
This commit is contained in:
parent
ec68b60204
commit
a68505ff48
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user