correct error in StandardOrderedMapSemantics due to generics checking

This commit is contained in:
Nathan Xu 2020-10-09 09:49:26 -04:00 committed by Andrea Boriero
parent b89658628e
commit 5c51ed46e8
1 changed files with 1 additions and 1 deletions

View File

@ -58,6 +58,6 @@ public class StandardOrderedMapSemantics extends AbstractMapSemantics<LinkedHash
@Override
public Iterator getElementIterator(LinkedHashMap rawCollection) {
return rawCollection.entrySet().iterator();
return rawCollection.values().iterator();
}
}