Constructs a new vector using the default capacity.
()
| 59 | * Constructs a new vector using the default capacity. |
| 60 | */ |
| 61 | public Vector() { |
| 62 | this(DEFAULT_SIZE, 0); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Constructs a new vector using the specified capacity. |
nothing calls this directly
no test coverage detected