MCPcopy Create free account
hub / github.com/davidgiven/luje / clone

Method clone

lib/java/util/HashMap.java:80–88  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

78 }
79
80 @Override
81 @SuppressWarnings("unchecked")
82 public Object clone() {
83 Entry<K, V> entry = (Entry<K, V>) super.clone();
84 if (next != null) {
85 entry.next = (Entry<K, V>) next.clone();
86 }
87 return entry;
88 }
89 }
90
91 private static class AbstractMapIterator<K, V> {

Callers

nothing calls this directly

Calls 1

cloneMethod · 0.45

Tested by

no test coverage detected