(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
| 3159 | } |
| 3160 | |
| 3161 | @Override |
| 3162 | public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { |
| 3163 | return filterEntries(unfiltered.subMap(fromKey, fromInclusive, toKey, toInclusive), entryPredicate); |
| 3164 | } |
| 3165 | |
| 3166 | @Override |
| 3167 | public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { |
nothing calls this directly
no test coverage detected