(ObjectInputStream in)
| 197 | } |
| 198 | |
| 199 | private void readObject(ObjectInputStream in) |
| 200 | throws ClassNotFoundException, IOException |
| 201 | { |
| 202 | in.defaultReadObject(); |
| 203 | int capacity = in.readInt(); |
| 204 | grow(capacity); |
| 205 | for (int i = 0; i < size; i++) { |
| 206 | array[i] = in.readObject(); |
| 207 | } |
| 208 | } |
| 209 | } |
nothing calls this directly
no test coverage detected