@serialData expectedValuesPerKey, number of distinct keys, and then for each distinct key: the key, number of values for that key, and the key's values
(ObjectOutputStream stream)
| 127 | */ |
| 128 | |
| 129 | @GwtIncompatible // java.io.ObjectOutputStream |
| 130 | private void writeObject(ObjectOutputStream stream) throws IOException { |
| 131 | stream.defaultWriteObject(); |
| 132 | Serialization.writeMultimap(this, stream); |
| 133 | } |
| 134 | |
| 135 | @GwtIncompatible // java.io.ObjectInputStream |
| 136 | private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { |
nothing calls this directly
no test coverage detected