File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
android/guava/src/com/google/common/collect
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect
guava/src/com/google/common/collect Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -543,7 +543,6 @@ public ImmutableSortedSet<E> headSet(E toElement) {
543
543
}
544
544
545
545
/** @since 12.0 */
546
- @ GwtIncompatible // NavigableSet
547
546
@ Override
548
547
public ImmutableSortedSet <E > headSet (E toElement , boolean inclusive ) {
549
548
return headSetImpl (checkNotNull (toElement ), inclusive );
@@ -593,7 +592,6 @@ public ImmutableSortedSet<E> tailSet(E fromElement) {
593
592
}
594
593
595
594
/** @since 12.0 */
596
- @ GwtIncompatible // NavigableSet
597
595
@ Override
598
596
public ImmutableSortedSet <E > tailSet (E fromElement , boolean inclusive ) {
599
597
return tailSetImpl (checkNotNull (fromElement ), inclusive );
Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ public E floor(E e) {
331
331
return !set .isEmpty () ? set .last () : null ;
332
332
}
333
333
334
- ImmutableSortedSet <E > headSet (E toElement , boolean inclusive ) {
334
+ public ImmutableSortedSet <E > headSet (E toElement , boolean inclusive ) {
335
335
checkNotNull (toElement );
336
336
if (inclusive ) {
337
337
E tmp = higher (toElement );
@@ -372,7 +372,7 @@ public ImmutableSortedSet<E> tailSet(E fromElement) {
372
372
}
373
373
}
374
374
375
- ImmutableSortedSet <E > tailSet (E fromElement , boolean inclusive ) {
375
+ public ImmutableSortedSet <E > tailSet (E fromElement , boolean inclusive ) {
376
376
checkNotNull (fromElement );
377
377
if (!inclusive ) {
378
378
E tmp = higher (fromElement );
Original file line number Diff line number Diff line change @@ -618,7 +618,6 @@ public ImmutableSortedSet<E> headSet(E toElement) {
618
618
}
619
619
620
620
/** @since 12.0 */
621
- @ GwtIncompatible // NavigableSet
622
621
@ Override
623
622
public ImmutableSortedSet <E > headSet (E toElement , boolean inclusive ) {
624
623
return headSetImpl (checkNotNull (toElement ), inclusive );
@@ -668,7 +667,6 @@ public ImmutableSortedSet<E> tailSet(E fromElement) {
668
667
}
669
668
670
669
/** @since 12.0 */
671
- @ GwtIncompatible // NavigableSet
672
670
@ Override
673
671
public ImmutableSortedSet <E > tailSet (E fromElement , boolean inclusive ) {
674
672
return tailSetImpl (checkNotNull (fromElement ), inclusive );
You can’t perform that action at this time.
0 commit comments