aboutsummaryrefslogtreecommitdiff
path: root/guava/src/com/google/common/collect/ImmutableSortedSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/collect/ImmutableSortedSet.java')
-rw-r--r--guava/src/com/google/common/collect/ImmutableSortedSet.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/guava/src/com/google/common/collect/ImmutableSortedSet.java b/guava/src/com/google/common/collect/ImmutableSortedSet.java
index f8fe43fb5..31ca5e202 100644
--- a/guava/src/com/google/common/collect/ImmutableSortedSet.java
+++ b/guava/src/com/google/common/collect/ImmutableSortedSet.java
@@ -105,8 +105,8 @@ public abstract class ImmutableSortedSet<E> extends ImmutableSet.CachingAsList<E
}
/** Returns an immutable sorted set containing a single element. */
- public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(E element) {
- return new RegularImmutableSortedSet<>(ImmutableList.of(element), Ordering.natural());
+ public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(E e1) {
+ return new RegularImmutableSortedSet<>(ImmutableList.of(e1), Ordering.natural());
}
/**
@@ -914,7 +914,7 @@ public abstract class ImmutableSortedSet<E> extends ImmutableSet.CachingAsList<E
*/
@DoNotCall("Pass a parameter of type Comparable")
@Deprecated
- public static <E> ImmutableSortedSet<E> of(E element) {
+ public static <E> ImmutableSortedSet<E> of(E e1) {
throw new UnsupportedOperationException();
}