()
| 5316 | /// |
| 5317 | /// - java.util.NavigableMap#pollFirstEntry() |
| 5318 | public Map.Entry<K, V> pollFirstEntry() { |
| 5319 | Entry<K, V> node = findSmallestEntry(); |
| 5320 | SimpleImmutableEntry<K, V> result = newImmutableEntry(node); |
| 5321 | if (null != node) { |
| 5322 | remove(node.key); |
| 5323 | } |
| 5324 | return result; |
| 5325 | } |
| 5326 | |
| 5327 | /// {@inheritDoc} |
| 5328 | /// |
nothing calls this directly
no test coverage detected