(K endKey)
| 593 | } |
| 594 | |
| 595 | public SortedMap<K, V> headMap(K endKey) { |
| 596 | checkRange(endKey); |
| 597 | if (hasStart) { |
| 598 | return new SubMap<K, V>(startKey, backingMap, endKey); |
| 599 | } |
| 600 | return new SubMap<K, V>(backingMap, endKey); |
| 601 | } |
| 602 | |
| 603 | @Override |
| 604 | public boolean isEmpty() { |
nothing calls this directly
no test coverage detected