(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
| 1558 | } |
| 1559 | |
| 1560 | @Override |
| 1561 | public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { |
| 1562 | return unmodifiableNavigableSet(delegate.subSet(fromElement, fromInclusive, toElement, toInclusive)); |
| 1563 | } |
| 1564 | |
| 1565 | @Override |
| 1566 | public NavigableSet<E> headSet(E toElement, boolean inclusive) { |
nothing calls this directly
no test coverage detected