Constructs a new instance of ArrayList with ten capacity.
()
| 43 | * Constructs a new instance of {@code ArrayList} with ten capacity. |
| 44 | */ |
| 45 | public ArrayList() { |
| 46 | this(10); |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Constructs a new instance of {@code ArrayList} with the specified |
nothing calls this directly
no test coverage detected