MCPcopy Create free account
hub / github.com/antlr/codebuff / readObject

Method readObject

output/java_guava/1.4.17/HashMultimap.java:135–143  ·  view source on GitHub ↗
(ObjectInputStream stream)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 4

readCountMethod · 0.95
newHashMapMethod · 0.95
populateMultimapMethod · 0.95
setMapMethod · 0.45

Tested by

no test coverage detected