22
22
import static com .google .common .collect .NullnessCasts .uncheckedCastNullableTToT ;
23
23
import static java .util .Objects .requireNonNull ;
24
24
25
- import com .google .common .annotations .Beta ;
26
25
import com .google .common .annotations .GwtCompatible ;
27
26
import com .google .common .annotations .GwtIncompatible ;
28
27
import com .google .common .annotations .J2ktIncompatible ;
@@ -963,7 +962,6 @@ Collection<Entry<K, V>> unmodifiableEntries(Collection<Entry<K, V>> entries) {
963
962
*
964
963
* @since 15.0
965
964
*/
966
- @ Beta
967
965
@ SuppressWarnings ("unchecked" )
968
966
// safe by specification of ListMultimap.asMap()
969
967
public static <K extends @ Nullable Object , V extends @ Nullable Object > Map <K , List <V >> asMap (
@@ -977,7 +975,6 @@ Collection<Entry<K, V>> unmodifiableEntries(Collection<Entry<K, V>> entries) {
977
975
*
978
976
* @since 15.0
979
977
*/
980
- @ Beta
981
978
@ SuppressWarnings ("unchecked" )
982
979
// safe by specification of SetMultimap.asMap()
983
980
public static <K extends @ Nullable Object , V extends @ Nullable Object > Map <K , Set <V >> asMap (
@@ -991,7 +988,6 @@ Collection<Entry<K, V>> unmodifiableEntries(Collection<Entry<K, V>> entries) {
991
988
*
992
989
* @since 15.0
993
990
*/
994
- @ Beta
995
991
@ SuppressWarnings ("unchecked" )
996
992
// safe by specification of SortedSetMultimap.asMap()
997
993
public static <K extends @ Nullable Object , V extends @ Nullable Object > Map <K , SortedSet <V >> asMap (
@@ -1005,7 +1001,6 @@ Collection<Entry<K, V>> unmodifiableEntries(Collection<Entry<K, V>> entries) {
1005
1001
*
1006
1002
* @since 15.0
1007
1003
*/
1008
- @ Beta
1009
1004
public static <K extends @ Nullable Object , V extends @ Nullable Object >
1010
1005
Map <K , Collection <V >> asMap (Multimap <K , V > multimap ) {
1011
1006
return multimap .asMap ();
0 commit comments