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