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

Method populateMultimap

output/java_guava/1.4.16/Serialization.java:168–171  ·  view source on GitHub ↗

Populates a multimap by reading an input stream, as part of deserialization. See #writeMultimap for the data format.

(Multimap<K, V> multimap, ObjectInputStream stream)

Source from the content-addressed store, hash-verified

166 */
167
168 static <K, V> void populateMultimap(Multimap<K, V> multimap, ObjectInputStream stream) throws IOException, ClassNotFoundException {
169 int distinctKeys = stream.readInt();
170 populateMultimap(multimap, stream, distinctKeys);
171 }
172
173 /**
174 * Populates a multimap by reading an input stream, as part of

Callers 3

readObjectMethod · 0.95
readObjectMethod · 0.95
readObjectMethod · 0.95

Calls 4

readIntMethod · 0.65
getMethod · 0.65
addMethod · 0.65
readObjectMethod · 0.45

Tested by

no test coverage detected