@@ -827,7 +827,7 @@ private Object implReplace(Object key, Object value) {
827827 return o ;
828828 }
829829
830- @ SuppressWarnings ( "unchecked" ) // Function must actually operate over strings
830+ // Function must actually operate over strings
831831 private void implReplaceAll (BiFunction <? super Object , ? super Object ,
832832 ? extends Object > function ) {
833833
@@ -847,7 +847,7 @@ private void implReplaceAll(BiFunction<? super Object, ? super Object,
847847 }
848848 }
849849
850- @ SuppressWarnings ( "unchecked" ) // Function must actually operate over strings
850+ // Function must actually operate over strings
851851 private Object implMerge (Object key , Object value ,
852852 BiFunction <? super Object , ? super Object , ? extends Object >
853853 remappingFunction ) {
@@ -864,7 +864,7 @@ private Object implMerge(Object key, Object value,
864864 return o ;
865865 }
866866
867- @ SuppressWarnings ( "unchecked" ) // Function must actually operate over strings
867+ // Function must actually operate over strings
868868 private Object implCompute (Object key , BiFunction <? super Object ,
869869 ? super Object , ? extends Object > remappingFunction ) {
870870
@@ -881,7 +881,7 @@ private Object implCompute(Object key, BiFunction<? super Object,
881881 return o ;
882882 }
883883
884- @ SuppressWarnings ( "unchecked" ) // Function must actually operate over strings
884+ // Function must actually operate over strings
885885 private Object implComputeIfAbsent (Object key , Function <? super Object ,
886886 ? extends Object > mappingFunction ) {
887887 if (!checkLegacy (key )) return null ;
@@ -893,7 +893,7 @@ private Object implComputeIfAbsent(Object key, Function<? super Object,
893893 return o ;
894894 }
895895
896- @ SuppressWarnings ( "unchecked" ) // Function must actually operate over strings
896+ // Function must actually operate over strings
897897 private Object implComputeIfPresent (Object key , BiFunction <? super Object ,
898898 ? super Object , ? extends Object > remappingFunction ) {
899899 if (!checkLegacy (key )) return null ;
0 commit comments