(K fromKey, K toKey)
| 3361 | } |
| 3362 | |
| 3363 | @Override |
| 3364 | public SortedMap<K, V> subMap(K fromKey, K toKey) { |
| 3365 | return subMap(fromKey, true, toKey, false); |
| 3366 | } |
| 3367 | |
| 3368 | @Override |
| 3369 | public SortedMap<K, V> headMap(K toKey) { |
nothing calls this directly
no test coverage detected