Fix size calculation of entrySet in MultiSet.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1714707 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2015-11-16 23:08:26 +00:00
parent 76f0eece9e
commit 8ed80d9d68
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ public abstract class AbstractMapMultiSet<E> extends AbstractCollection<E> imple
@Override @Override
public int size() { public int size() {
return parent.entrySet.size(); return parent.map.entrySet().size();
} }
@Override @Override