MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / Entry

Method Entry

vm/JavaAPI/src/java/util/HashMap.java:67–70  ·  view source on GitHub ↗
(K theKey, int hash)

Source from the content-addressed store, hash-verified

65 Entry<K, V> next;
66
67 Entry(K theKey, int hash) {
68 super(theKey, null);
69 this.origKeyHash = hash;
70 }
71
72 Entry(K theKey, V theValue) {
73 super(theKey, theValue);

Callers

nothing calls this directly

Calls 1

computeHashCodeMethod · 0.45

Tested by

no test coverage detected