aboutsummaryrefslogtreecommitdiffstats
path: root/guava/src/com/google/common/collect/Tables.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/collect/Tables.java')
-rw-r--r--guava/src/com/google/common/collect/Tables.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/guava/src/com/google/common/collect/Tables.java b/guava/src/com/google/common/collect/Tables.java
index 028aba3..a9c69b9 100644
--- a/guava/src/com/google/common/collect/Tables.java
+++ b/guava/src/com/google/common/collect/Tables.java
@@ -39,16 +39,13 @@ import javax.annotation.Nullable;
/**
* Provides static methods that involve a {@code Table}.
- *
- * <p>See the Guava User Guide article on <a href=
- * "http://code.google.com/p/guava-libraries/wiki/CollectionUtilitiesExplained#Tables">
- * {@code Tables}</a>.
*
* @author Jared Levy
* @author Louis Wasserman
* @since 7.0
*/
@GwtCompatible
+@Beta
public final class Tables {
private Tables() {}
@@ -364,7 +361,6 @@ public final class Tables {
* @throws IllegalArgumentException if {@code backingMap} is not empty
* @since 10.0
*/
- @Beta
public static <R, C, V> Table<R, C, V> newCustomTable(
Map<R, Map<C, V>> backingMap, Supplier<? extends Map<C, V>> factory) {
checkArgument(backingMap.isEmpty());
@@ -399,7 +395,6 @@ public final class Tables {
*
* @since 10.0
*/
- @Beta
public static <R, C, V1, V2> Table<R, C, V2> transformValues(
Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
return new TransformedTable<R, C, V1, V2>(fromTable, function);
@@ -701,7 +696,6 @@ public final class Tables {
* @return an unmodifiable view of the specified table
* @since 11.0
*/
- @Beta
public static <R, C, V> RowSortedTable<R, C, V> unmodifiableRowSortedTable(
RowSortedTable<R, ? extends C, ? extends V> table) {
/*