(ObjectOutputStream out)
| 189 | } |
| 190 | |
| 191 | private void writeObject(ObjectOutputStream out) throws IOException { |
| 192 | out.defaultWriteObject(); |
| 193 | out.writeInt(array.length); |
| 194 | for (T o : this) { |
| 195 | out.writeObject(o); |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | private void readObject(ObjectInputStream in) |
| 200 | throws ClassNotFoundException, IOException |
nothing calls this directly
no test coverage detected