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