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

Method findNullKeyEntry

Ports/CLDC11/src/java/util/HashMap.java:462–467  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

460 }
461
462 final Entry<K,V> findNullKeyEntry() {
463 Entry<K,V> m = elementData[0];
464 while (m != null && m.key != null)
465 m = m.next;
466 return m;
467 }
468
469 /// Returns whether this map is empty.
470 ///

Callers 4

getEntryMethod · 0.95
putImplMethod · 0.95
getMethod · 0.45
putImplMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected