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

Method Entry

Ports/CLDC11/src/java/util/HashMap.java:65–68  ·  view source on GitHub ↗
(K theKey, int hash)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

computeHashCodeMethod · 0.45

Tested by

no test coverage detected