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

Method findNullKeyEntry

vm/JavaAPI/src/java/util/HashMap.java:454–459  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

452 }*/
453
454 final Entry<K,V> findNullKeyEntry() {
455 Entry<K,V> m = elementData[0];
456 while (m != null && m.key != null)
457 m = m.next;
458 return m;
459 }
460
461 /**
462 * Returns whether this map is empty.

Callers 4

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

Calls

no outgoing calls

Tested by

no test coverage detected