aboutsummaryrefslogtreecommitdiffstats
path: root/guava/src/com/google/common/collect/EnumBiMap.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/collect/EnumBiMap.java')
-rw-r--r--guava/src/com/google/common/collect/EnumBiMap.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/guava/src/com/google/common/collect/EnumBiMap.java b/guava/src/com/google/common/collect/EnumBiMap.java
index 05d84ed..9a94ddd 100644
--- a/guava/src/com/google/common/collect/EnumBiMap.java
+++ b/guava/src/com/google/common/collect/EnumBiMap.java
@@ -17,7 +17,6 @@
package com.google.common.collect;
import static com.google.common.base.Preconditions.checkArgument;
-import static com.google.common.base.Preconditions.checkNotNull;
import com.google.common.annotations.GwtCompatible;
import com.google.common.annotations.GwtIncompatible;
@@ -32,10 +31,6 @@ import java.util.Map;
* A {@code BiMap} backed by two {@code EnumMap} instances. Null keys and values
* are not permitted. An {@code EnumBiMap} and its inverse are both
* serializable.
- *
- * <p>See the Guava User Guide article on <a href=
- * "http://code.google.com/p/guava-libraries/wiki/NewCollectionTypesExplained#BiMap">
- * {@code BiMap}</a>.
*
* @author Mike Bostock
* @since 2.0 (imported from Google Collections Library)
@@ -111,16 +106,6 @@ public final class EnumBiMap<K extends Enum<K>, V extends Enum<V>>
return valueType;
}
- @Override
- K checkKey(K key) {
- return checkNotNull(key);
- }
-
- @Override
- V checkValue(V value) {
- return checkNotNull(value);
- }
-
/**
* @serialData the key class, value class, number of entries, first key, first
* value, second key, second value, and so on.