(
@ParametricNullness K fromElement,
boolean fromInclusive,
@ParametricNullness K toElement,
boolean toInclusive)
| 4035 | } |
| 4036 | |
| 4037 | @Override |
| 4038 | public NavigableSet<K> subSet( |
| 4039 | @ParametricNullness K fromElement, |
| 4040 | boolean fromInclusive, |
| 4041 | @ParametricNullness K toElement, |
| 4042 | boolean toInclusive) { |
| 4043 | return map().subMap(fromElement, fromInclusive, toElement, toInclusive).navigableKeySet(); |
| 4044 | } |
| 4045 | |
| 4046 | @Override |
| 4047 | public SortedSet<K> subSet(@ParametricNullness K fromElement, @ParametricNullness K toElement) { |
nothing calls this directly
no test coverage detected