aboutsummaryrefslogtreecommitdiff
path: root/guava/src/com/google/common/collect/ForwardingSortedMap.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/collect/ForwardingSortedMap.java')
-rw-r--r--guava/src/com/google/common/collect/ForwardingSortedMap.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/guava/src/com/google/common/collect/ForwardingSortedMap.java b/guava/src/com/google/common/collect/ForwardingSortedMap.java
index e0882abc7..9779b97a7 100644
--- a/guava/src/com/google/common/collect/ForwardingSortedMap.java
+++ b/guava/src/com/google/common/collect/ForwardingSortedMap.java
@@ -18,7 +18,6 @@ package com.google.common.collect;
import static com.google.common.base.Preconditions.checkArgument;
-import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtCompatible;
import java.util.Comparator;
import java.util.NoSuchElementException;
@@ -103,7 +102,6 @@ public abstract class ForwardingSortedMap<K extends @Nullable Object, V extends
*
* @since 15.0
*/
- @Beta
protected class StandardKeySet extends Maps.SortedKeySet<K, V> {
/** Constructor for use by subclasses. */
public StandardKeySet() {
@@ -130,7 +128,6 @@ public abstract class ForwardingSortedMap<K extends @Nullable Object, V extends
* @since 7.0
*/
@Override
- @Beta
protected boolean standardContainsKey(@CheckForNull Object key) {
try {
// any CCE or NPE will be caught
@@ -150,7 +147,6 @@ public abstract class ForwardingSortedMap<K extends @Nullable Object, V extends
*
* @since 7.0
*/
- @Beta
protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) {
checkArgument(unsafeCompare(comparator(), fromKey, toKey) <= 0, "fromKey must be <= toKey");
return tailMap(fromKey).headMap(toKey);