(ObjectOutputStream out)
| 283 | public final static long serialVersionUID = 0x0cc1f63e2d256ae6l; |
| 284 | |
| 285 | private void writeObject(ObjectOutputStream out) throws IOException { |
| 286 | out.defaultWriteObject(); |
| 287 | out.writeInt(size()); |
| 288 | for (Entry<K, V> entry : entrySet()) { |
| 289 | out.writeObject(entry.getKey()); |
| 290 | out.writeObject(entry.getValue()); |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | private void readObject(ObjectInputStream in) throws IOException { |
| 295 | in.defaultReadObject(); |
nothing calls this directly
no test coverage detected