(ObjectInputStream in)
| 292 | } |
| 293 | |
| 294 | private void readObject(ObjectInputStream in) throws IOException { |
| 295 | in.defaultReadObject(); |
| 296 | initializeSet(); |
| 297 | int size = in.readInt(); |
| 298 | for (int i = 0; i < size; i++) try { |
| 299 | put((K) in.readObject(), (V) in.readObject()); |
| 300 | } catch (ClassNotFoundException e) { |
| 301 | throw new IOException(e); |
| 302 | } |
| 303 | } |
| 304 | } |
nothing calls this directly
no test coverage detected