(@ParametricNullness K toElement, boolean inclusive)
| 4049 | } |
| 4050 | |
| 4051 | @Override |
| 4052 | public NavigableSet<K> headSet(@ParametricNullness K toElement, boolean inclusive) { |
| 4053 | return map().headMap(toElement, inclusive).navigableKeySet(); |
| 4054 | } |
| 4055 | |
| 4056 | @Override |
| 4057 | public SortedSet<K> headSet(@ParametricNullness K toElement) { |
nothing calls this directly
no test coverage detected