Skip to content

Commit 740d8bd

Browse files
cpovirkGoogle Java Core Libraries
authored andcommitted
Fix a few Javadoc warnings.
They are the product of cl/726095812 and... cl/133039225 + cl/137220845 + cl/139396264, oops! RELNOTES=n/a PiperOrigin-RevId: 726615521
1 parent 5d336db commit 740d8bd

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

android/guava/src/com/google/common/collect/FluentIterable.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import java.util.Iterator;
3232
import java.util.List;
3333
import java.util.SortedSet;
34+
import java.util.stream.Stream;
3435
import org.jspecify.annotations.NonNull;
3536
import org.jspecify.annotations.Nullable;
3637

android/guava/src/com/google/common/collect/ImmutableBiMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ private void readObject(ObjectInputStream stream) throws InvalidObjectException
645645
* {@code ImmutableBiMap}.
646646
*
647647
* @throws UnsupportedOperationException always
648-
* @deprecated Use {@link ImmutableBiMap#toImmutableBiMap(Function, Function, BinaryOperator)}.
648+
* @deprecated Merging values does not make sense for a {@code BiMap}.
649649
* @since 33.2.0 (available since 21.0 in guava-jre)
650650
*/
651651
@Deprecated

android/guava/src/com/google/common/collect/Iterables.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
import java.util.Queue;
3737
import java.util.RandomAccess;
3838
import java.util.Set;
39+
import java.util.stream.Stream;
3940
import org.jspecify.annotations.NonNull;
4041
import org.jspecify.annotations.Nullable;
4142

guava/src/com/google/common/collect/ImmutableBiMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ private void readObject(ObjectInputStream stream) throws InvalidObjectException
665665
* {@code ImmutableBiMap}.
666666
*
667667
* @throws UnsupportedOperationException always
668-
* @deprecated Use {@link ImmutableBiMap#toImmutableBiMap(Function, Function, BinaryOperator)}.
668+
* @deprecated Merging values does not make sense for a {@code BiMap}.
669669
*/
670670
@Deprecated
671671
@DoNotCall("Use toImmutableBiMap")

0 commit comments

Comments
 (0)