@serialData the number of entries, first key, first value, second key, second value, and so on.
(ObjectOutputStream stream)
| 678 | */ |
| 679 | |
| 680 | @GwtIncompatible // java.io.ObjectOutputStream |
| 681 | private void writeObject(ObjectOutputStream stream) throws IOException { |
| 682 | stream.defaultWriteObject(); |
| 683 | Serialization.writeMap(this, stream); |
| 684 | } |
| 685 | |
| 686 | @GwtIncompatible // java.io.ObjectInputStream |
| 687 | private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { |