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

Method clone

classpath/java/util/Vector.java:130–136  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

128 }
129
130 public synchronized Object clone() {
131 Vector copy = new Vector(size());
132 for (T t : this) {
133 copy.add(t);
134 }
135 return copy;
136 }
137}

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.95
addMethod · 0.95

Tested by

no test coverage detected