MCPcopy Create free account
hub / github.com/ReadyTalk/avian / readObject

Method readObject

classpath/java/util/TreeMap.java:294–303  ·  view source on GitHub ↗
(ObjectInputStream in)

Source from the content-addressed store, hash-verified

292 }
293
294 private void readObject(ObjectInputStream in) throws IOException {
295 in.defaultReadObject();
296 initializeSet();
297 int size = in.readInt();
298 for (int i = 0; i < size; i++) try {
299 put((K) in.readObject(), (V) in.readObject());
300 } catch (ClassNotFoundException e) {
301 throw new IOException(e);
302 }
303 }
304}

Callers

nothing calls this directly

Calls 5

initializeSetMethod · 0.95
putMethod · 0.95
readIntMethod · 0.65
readObjectMethod · 0.65
defaultReadObjectMethod · 0.45

Tested by

no test coverage detected