equal
deleted
inserted
replaced
152 this(initialCapacity, 0); |
152 this(initialCapacity, 0); |
153 } |
153 } |
154 |
154 |
155 /** |
155 /** |
156 * Constructs an empty vector so that its internal data array |
156 * Constructs an empty vector so that its internal data array |
157 * has size {@code 10} and its standard capacity increment is |
157 * has size {@code 10} and its standard capacBasity increment is |
158 * zero. |
158 * zero. |
159 */ |
159 */ |
160 public Vector() { |
160 public Vector() { |
161 this(10); |
161 this(10); |
162 } |
162 } |