Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
getEntry
Method · 0.95
putImpl
Method · 0.95
get
Method · 0.45
putImpl
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected