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