Constructs a new Hashtable using the default capacity and load factor.
()
| 212 | * factor. |
| 213 | */ |
| 214 | public Hashtable() { |
| 215 | this(11); |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * Constructs a new {@code Hashtable} using the specified capacity and the |
nothing calls this directly
no test coverage detected