Constructs a new empty HashMap instance.
()
| 269 | * Constructs a new empty {@code HashMap} instance. |
| 270 | */ |
| 271 | public HashMap() { |
| 272 | this(DEFAULT_SIZE); |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * Constructs a new {@code HashMap} instance with the specified capacity. |
nothing calls this directly
no test coverage detected