()
| 37 | |
| 38 | /// Constructs a new instance of `ArrayList` with ten capacity. |
| 39 | public ArrayList() { |
| 40 | this(10); |
| 41 | } |
| 42 | |
| 43 | /// Constructs a new instance of `ArrayList` with the specified |
| 44 | /// capacity. |
nothing calls this directly
no test coverage detected