Fix awful naming

This commit is contained in:
Trustin Lee 2014-11-22 07:46:40 +09:00
parent 040c340f76
commit 247d5b1bd9

View File

@ -191,10 +191,10 @@ public class IntObjectHashMap<V> implements IntObjectMap<V>, Iterable<IntObjectM
@Override
public boolean containsValue(V value) {
V v = toInternal(value);
for (V value1 : values) {
V v1 = toInternal(value);
for (V v2 : values) {
// The map supports null values; this will be matched as NULL_VALUE.equals(NULL_VALUE).
if (value1 != null && value1.equals(v)) {
if (v2 != null && v2.equals(v1)) {
return true;
}
}