Skip to content

Commit

Permalink
Work around bugs in the forthcoming version of our nullness checker.
Browse files Browse the repository at this point in the history
RELNOTES=n/a
PiperOrigin-RevId: 654056575
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Jul 23, 2024
1 parent f394265 commit 2d509d5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import com.google.common.collect.LinkedListMultimap;
import com.google.common.collect.ListMultimap;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.common.collect.Multimap;
import com.google.common.collect.SetMultimap;
import com.google.common.collect.Sets;
Expand Down Expand Up @@ -587,7 +588,7 @@ public void containsEntry(@Nullable Object expectedKey, E expectedValue) {
.add(
fact(
"found match (but failing because of exception)",
immutableEntry(expectedKey, actualValue)))
Maps.<@Nullable Object, A>immutableEntry(expectedKey, actualValue)))
.add(
fact(
"full contents",
Expand Down

0 comments on commit 2d509d5

Please sign in to comment.