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

Method readObject

output/java_guava/1.4.17/HashMultiset.java:95–101  ·  view source on GitHub ↗
(ObjectInputStream stream)

Source from the content-addressed store, hash-verified

93 }
94
95 @GwtIncompatible // java.io.ObjectInputStream
96 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
97 stream.defaultReadObject();
98 int distinctElements = Serialization.readCount(stream);
99 setBackingMap(Maps.<E, Count>newHashMap());
100 Serialization.populateMultiset(this, stream, distinctElements);
101 }
102
103 @GwtIncompatible // Not needed in emulated source.
104 private static final long serialVersionUID = 0;

Callers

nothing calls this directly

Calls 4

readCountMethod · 0.95
newHashMapMethod · 0.95
populateMultisetMethod · 0.95
setBackingMapMethod · 0.45

Tested by

no test coverage detected