{@inheritDoc} @see java.util.NavigableMap#pollFirstEntry() @since 1.6
()
| 5276 | * @since 1.6 |
| 5277 | */ |
| 5278 | public Map.Entry<K, V> pollFirstEntry() { |
| 5279 | Entry<K, V> node = findSmallestEntry(); |
| 5280 | SimpleImmutableEntry<K, V> result = newImmutableEntry(node); |
| 5281 | if (null != node) { |
| 5282 | remove(node.key); |
| 5283 | } |
| 5284 | return result; |
| 5285 | } |
| 5286 | |
| 5287 | /** |
| 5288 | * {@inheritDoc} |
nothing calls this directly
no test coverage detected