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

Method writeObject

classpath/java/util/ArrayList.java:191–197  ·  view source on GitHub ↗
(ObjectOutputStream out)

Source from the content-addressed store, hash-verified

189 }
190
191 private void writeObject(ObjectOutputStream out) throws IOException {
192 out.defaultWriteObject();
193 out.writeInt(array.length);
194 for (T o : this) {
195 out.writeObject(o);
196 }
197 }
198
199 private void readObject(ObjectInputStream in)
200 throws ClassNotFoundException, IOException

Callers

nothing calls this directly

Calls 3

writeIntMethod · 0.65
writeObjectMethod · 0.65
defaultWriteObjectMethod · 0.45

Tested by

no test coverage detected