Constructs a new empty HashMap instance.
()
| 256 | * Constructs a new empty {@code HashMap} instance. |
| 257 | */ |
| 258 | public HashMap() { |
| 259 | this(DEFAULT_SIZE); |
| 260 | } |
| 261 | |
| 262 | /** |
| 263 | * Constructs a new {@code HashMap} instance with the specified capacity. |
nothing calls this directly
no test coverage detected