(ObjectInputStream stream)
| 133 | } |
| 134 | |
| 135 | @GwtIncompatible // java.io.ObjectInputStream |
| 136 | private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { |
| 137 | stream.defaultReadObject(); |
| 138 | expectedValuesPerKey = DEFAULT_VALUES_PER_KEY; |
| 139 | int distinctKeys = Serialization.readCount(stream); |
| 140 | Map<K, Collection<V>> map = Maps.newHashMap(); |
| 141 | setMap(map); |
| 142 | Serialization.populateMultimap(this, stream, distinctKeys); |
| 143 | } |
| 144 | |
| 145 | @GwtIncompatible // Not needed in emulated source |
| 146 | private static final long serialVersionUID = 0; |
nothing calls this directly
no test coverage detected