Constructs a new instance of ArrayList with ten capacity.
()
| 39 | * Constructs a new instance of {@code ArrayList} with ten capacity. |
| 40 | */ |
| 41 | public ArrayList() { |
| 42 | this(10); |
| 43 | } |
| 44 | |
| 45 | public ArrayList(E... arr) { |
| 46 | this(arr.length); |
nothing calls this directly
no test coverage detected