()
| 5334 | /// |
| 5335 | /// - java.util.NavigableMap#pollLastEntry() |
| 5336 | public Map.Entry<K, V> pollLastEntry() { |
| 5337 | Entry<K, V> node = findBiggestEntry(); |
| 5338 | SimpleImmutableEntry<K, V> result = newImmutableEntry(node); |
| 5339 | if (null != node) { |
| 5340 | remove(node.key); |
| 5341 | } |
| 5342 | return result; |
| 5343 | } |
| 5344 | |
| 5345 | /// {@inheritDoc} |
| 5346 | /// |
nothing calls this directly
no test coverage detected