aboutsummaryrefslogtreecommitdiffstats
path: root/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/EmptyImmutableSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/EmptyImmutableSet.java')
-rw-r--r--guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/EmptyImmutableSet.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/EmptyImmutableSet.java b/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/EmptyImmutableSet.java
index ae3b3f3..6166c36 100644
--- a/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/EmptyImmutableSet.java
+++ b/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/EmptyImmutableSet.java
@@ -16,17 +16,12 @@
package com.google.common.collect;
-import java.util.Collections;
-
/**
* GWT emulation of {@link EmptyImmutableSet}.
*
* @author Hayward Chan
*/
-final class EmptyImmutableSet extends ForwardingImmutableSet<Object> {
- private EmptyImmutableSet() {
- super(Collections.emptySet());
- }
+final class EmptyImmutableSet extends ImmutableSet<Object> {
static final EmptyImmutableSet INSTANCE = new EmptyImmutableSet();
}