Raw types
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1023832 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
28e8ba5476
commit
1fb865ca56
|
@ -1312,11 +1312,11 @@ public class AbstractHashedMap<K, V> extends AbstractMap<K, V> implements Iterab
|
|||
if (obj instanceof Map == false) {
|
||||
return false;
|
||||
}
|
||||
Map map = (Map) obj;
|
||||
Map<?,?> map = (Map<?,?>) obj;
|
||||
if (map.size() != size()) {
|
||||
return false;
|
||||
}
|
||||
MapIterator it = mapIterator();
|
||||
MapIterator<?,?> it = mapIterator();
|
||||
try {
|
||||
while (it.hasNext()) {
|
||||
Object key = it.next();
|
||||
|
|
Loading…
Reference in New Issue