{@inheritDoc} @see java.util.NavigableMap#firstEntry() @since 1.6
()
| 5256 | * @since 1.6 |
| 5257 | */ |
| 5258 | public Map.Entry<K, V> firstEntry() { |
| 5259 | return newImmutableEntry(findSmallestEntry()); |
| 5260 | } |
| 5261 | |
| 5262 | /** |
| 5263 | * {@inheritDoc} |
nothing calls this directly
no test coverage detected