Constructs a new vector using the default capacity.
()
| 64 | * Constructs a new vector using the default capacity. |
| 65 | */ |
| 66 | public Vector() { |
| 67 | this(DEFAULT_SIZE, 0); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Constructs a new vector using the specified capacity. |
nothing calls this directly
no test coverage detected