(ObjectInputStream stream)
| 256 | } |
| 257 | |
| 258 | @GwtIncompatible // java.io.ObjectInputStream |
| 259 | @SuppressWarnings("unchecked") // reading data stored by writeObject |
| 260 | private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { |
| 261 | stream.defaultReadObject(); |
| 262 | keyComparator = checkNotNull((Comparator<? super K>) stream.readObject()); |
| 263 | valueComparator = checkNotNull((Comparator<? super V>) stream.readObject()); |
| 264 | setMap(new TreeMap<K, Collection<V>>(keyComparator)); |
| 265 | Serialization.populateMultimap(this, stream); |
| 266 | } |
| 267 | |
| 268 | @GwtIncompatible // not needed in emulated source |
| 269 | private static final long serialVersionUID = 0; |
nothing calls this directly
no test coverage detected