aboutsummaryrefslogtreecommitdiff
path: root/guava/src/com/google/common/collect/ContiguousSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/collect/ContiguousSet.java')
-rw-r--r--guava/src/com/google/common/collect/ContiguousSet.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/guava/src/com/google/common/collect/ContiguousSet.java b/guava/src/com/google/common/collect/ContiguousSet.java
index b3e4889d7..d0792054e 100644
--- a/guava/src/com/google/common/collect/ContiguousSet.java
+++ b/guava/src/com/google/common/collect/ContiguousSet.java
@@ -18,7 +18,6 @@ import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static java.util.Objects.requireNonNull;
-import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtCompatible;
import com.google.common.annotations.GwtIncompatible;
import com.google.errorprone.annotations.DoNotCall;
@@ -103,7 +102,6 @@ public abstract class ContiguousSet<C extends Comparable> extends ImmutableSorte
* @throws IllegalArgumentException if {@code lower} is greater than {@code upper}
* @since 23.0
*/
- @Beta
public static ContiguousSet<Integer> closed(int lower, int upper) {
return create(Range.closed(lower, upper), DiscreteDomain.integers());
}
@@ -116,7 +114,6 @@ public abstract class ContiguousSet<C extends Comparable> extends ImmutableSorte
* @throws IllegalArgumentException if {@code lower} is greater than {@code upper}
* @since 23.0
*/
- @Beta
public static ContiguousSet<Long> closed(long lower, long upper) {
return create(Range.closed(lower, upper), DiscreteDomain.longs());
}
@@ -129,7 +126,6 @@ public abstract class ContiguousSet<C extends Comparable> extends ImmutableSorte
* @throws IllegalArgumentException if {@code lower} is greater than {@code upper}
* @since 23.0
*/
- @Beta
public static ContiguousSet<Integer> closedOpen(int lower, int upper) {
return create(Range.closedOpen(lower, upper), DiscreteDomain.integers());
}
@@ -142,7 +138,6 @@ public abstract class ContiguousSet<C extends Comparable> extends ImmutableSorte
* @throws IllegalArgumentException if {@code lower} is greater than {@code upper}
* @since 23.0
*/
- @Beta
public static ContiguousSet<Long> closedOpen(long lower, long upper) {
return create(Range.closedOpen(lower, upper), DiscreteDomain.longs());
}
@@ -245,7 +240,7 @@ public abstract class ContiguousSet<C extends Comparable> extends ImmutableSorte
return new DescendingImmutableSortedSet<>(this);
}
- /** Returns a short-hand representation of the contents such as {@code "[1..100]"}. */
+ /** Returns a shorthand representation of the contents such as {@code "[1..100]"}. */
@Override
public String toString() {
return range().toString();