Constructs a new Hashtable using the default capacity and load factor.
()
| 228 | * factor. |
| 229 | */ |
| 230 | public Hashtable() { |
| 231 | this(11); |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Constructs a new {@code Hashtable} using the specified capacity and the |
nothing calls this directly
no test coverage detected