(K fromKey, boolean inclusive)
| 3169 | } |
| 3170 | |
| 3171 | @Override |
| 3172 | public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { |
| 3173 | return filterEntries(unfiltered.tailMap(fromKey, inclusive), entryPredicate); |
| 3174 | } |
| 3175 | } |
| 3176 | |
| 3177 | /** |
nothing calls this directly
no test coverage detected