aboutsummaryrefslogtreecommitdiff
path: root/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java')
-rw-r--r--guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java b/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java
index 603fc1766..6fd8ee8de 100644
--- a/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java
+++ b/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java
@@ -55,8 +55,8 @@ public abstract class ImmutableSet<E> extends ImmutableCollection<E> implements
return (ImmutableSet<E>) RegularImmutableSet.EMPTY;
}
- public static <E> ImmutableSet<E> of(E element) {
- return new SingletonImmutableSet<E>(element);
+ public static <E> ImmutableSet<E> of(E e1) {
+ return new SingletonImmutableSet<E>(e1);
}
@SuppressWarnings("unchecked")