Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/davidgiven/luje
/ findNullKeyEntry
Method
findNullKeyEntry
lib/java/util/HashMap.java:487–492 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
485
}
486
487
final
Entry<K,V> findNullKeyEntry() {
488
Entry<K,V> m = elementData[0];
489
while
(m != null && m.key != null)
490
m = m.next;
491
return
m;
492
}
493
494
/**
495
* Returns whether this map is empty.
Callers
2
getEntry
Method · 0.95
putImpl
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected