correct error in StandardOrderedMapSemantics due to generics checking
This commit is contained in:
parent
b89658628e
commit
5c51ed46e8
|
@ -58,6 +58,6 @@ public class StandardOrderedMapSemantics extends AbstractMapSemantics<LinkedHash
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Iterator getElementIterator(LinkedHashMap rawCollection) {
|
public Iterator getElementIterator(LinkedHashMap rawCollection) {
|
||||||
return rawCollection.entrySet().iterator();
|
return rawCollection.values().iterator();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue