@serialData key comparator, value comparator, number of distinct keys, and then for each distinct key: the key, number of values for that key, and key values
(ObjectOutputStream stream)
| 248 | */ |
| 249 | |
| 250 | @GwtIncompatible // java.io.ObjectOutputStream |
| 251 | private void writeObject(ObjectOutputStream stream) throws IOException { |
| 252 | stream.defaultWriteObject(); |
| 253 | stream.writeObject(keyComparator()); |
| 254 | stream.writeObject(valueComparator()); |
| 255 | Serialization.writeMultimap(this, stream); |
| 256 | } |
| 257 | |
| 258 | @GwtIncompatible // java.io.ObjectInputStream |
| 259 | @SuppressWarnings("unchecked") // reading data stored by writeObject |
nothing calls this directly
no test coverage detected