{@inheritDoc} @see java.util.NavigableMap#pollLastEntry() @since 1.6
()
| 5291 | * @since 1.6 |
| 5292 | */ |
| 5293 | public Map.Entry<K, V> pollLastEntry() { |
| 5294 | Entry<K, V> node = findBiggestEntry(); |
| 5295 | SimpleImmutableEntry<K, V> result = newImmutableEntry(node); |
| 5296 | if (null != node) { |
| 5297 | remove(node.key); |
| 5298 | } |
| 5299 | return result; |
| 5300 | } |
| 5301 | |
| 5302 | /** |
| 5303 | * {@inheritDoc} |
nothing calls this directly
no test coverage detected