mirror of
https://github.com/corda/corda.git
synced 2025-06-05 17:01:45 +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);
|
this(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String toString() {
|
||||||
|
return map.toString();
|
||||||
|
}
|
||||||
|
|
||||||
public synchronized int size() {
|
public synchronized int size() {
|
||||||
return map.size();
|
return map.size();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user