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

Method readObject

classpath/java/util/ArrayList.java:199–208  ·  view source on GitHub ↗
(ObjectInputStream in)

Source from the content-addressed store, hash-verified

197 }
198
199 private void readObject(ObjectInputStream in)
200 throws ClassNotFoundException, IOException
201 {
202 in.defaultReadObject();
203 int capacity = in.readInt();
204 grow(capacity);
205 for (int i = 0; i < size; i++) {
206 array[i] = in.readObject();
207 }
208 }
209}

Callers

nothing calls this directly

Calls 4

growMethod · 0.95
readIntMethod · 0.65
readObjectMethod · 0.65
defaultReadObjectMethod · 0.45

Tested by

no test coverage detected