aboutsummaryrefslogtreecommitdiff
path: root/android/guava-testlib/src/com/google/common
diff options
context:
space:
mode:
Diffstat (limited to 'android/guava-testlib/src/com/google/common')
-rw-r--r--android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java b/android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
index fb09b6e63..484913878 100644
--- a/android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
+++ b/android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
@@ -149,7 +149,7 @@ public abstract class MapInterfaceTest<K, V> extends TestCase {
for (V value : values) {
if (value != null) {
try {
- value.hashCode();
+ int unused = value.hashCode();
} catch (Exception e) {
return false;
}