Skip to content

Commit 6652237

Browse files
java-team-github-botGoogle Java Core Libraries
authored andcommitted
Add another ReturnValueIgnored suppression.
RELNOTES=N/A PiperOrigin-RevId: 429314735
1 parent 5655899 commit 6652237

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ protected final boolean supportsValuesHashCode(Map<K, V> map) {
149149
for (V value : values) {
150150
if (value != null) {
151151
try {
152-
value.hashCode();
152+
int unused = value.hashCode();
153153
} catch (Exception e) {
154154
return false;
155155
}

0 commit comments

Comments
 (0)