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:
Sebastian Bazley 2010-10-18 15:07:04 +00:00
parent 28e8ba5476
commit 1fb865ca56
1 changed files with 2 additions and 2 deletions

View File

@ -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();