implement Hashtable.toString() (defer to HashMap)

This commit is contained in:
Joel Dice 2007-08-21 22:00:46 -06:00
parent ec68b60204
commit a68505ff48

View File

@ -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();
}