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