(K fromKey)
| 3367 | } |
| 3368 | |
| 3369 | @Override |
| 3370 | public SortedMap<K, V> tailMap(K fromKey) { |
| 3371 | return tailMap(fromKey, true); |
| 3372 | } |
| 3373 | |
| 3374 | @Override |
| 3375 | public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { |
nothing calls this directly
no test coverage detected