Skip to content

Commit

Permalink
Add @beta to the ImmutableTable collectors.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=138675494
  • Loading branch information
lowasser authored and cpovirk committed Nov 11, 2016
1 parent cd9a472 commit 9d028d0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions guava/src/com/google/common/collect/ImmutableTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import static com.google.common.base.Preconditions.checkNotNull;

import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtCompatible;
import com.google.common.base.MoreObjects;
import com.google.common.collect.Tables.AbstractCell;
Expand Down Expand Up @@ -59,6 +60,7 @@ public abstract class ImmutableTable<R, C, V> extends AbstractTable<R, C, V>
*
* @since 21.0
*/
@Beta
public static <T, R, C, V> Collector<T, ?, ImmutableTable<R, C, V>> toImmutableTable(
Function<? super T, ? extends R> rowFunction,
Function<? super T, ? extends C> columnFunction,
Expand Down

0 comments on commit 9d028d0

Please sign in to comment.