(E fromElement, boolean inclusive)
| 1568 | } |
| 1569 | |
| 1570 | @Override |
| 1571 | public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { |
| 1572 | return unmodifiableNavigableSet(delegate.tailSet(fromElement, inclusive)); |
| 1573 | } |
| 1574 | |
| 1575 | private static final long serialVersionUID = 0; |
| 1576 | } |
nothing calls this directly
no test coverage detected