(@ParametricNullness K fromElement, boolean inclusive)
| 4059 | } |
| 4060 | |
| 4061 | @Override |
| 4062 | public NavigableSet<K> tailSet(@ParametricNullness K fromElement, boolean inclusive) { |
| 4063 | return map().tailMap(fromElement, inclusive).navigableKeySet(); |
| 4064 | } |
| 4065 | |
| 4066 | @Override |
| 4067 | public SortedSet<K> tailSet(@ParametricNullness K fromElement) { |
nothing calls this directly
no test coverage detected