Fix findbugs error.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1651113 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2015-01-12 15:16:53 +00:00
parent 6975b0567d
commit 32155107dd
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ public class AbstractMultiValuedMap<K, V> implements MultiValuedMap<K, V>, Seria
}
this.map = (Map<K, Collection<V>>) map;
this.collectionFactory = new InstantiateFactory<C>(collectionClazz, new Class[] { Integer.TYPE },
new Object[] { new Integer(initialCollectionCapacity) });
new Object[] { Integer.valueOf(initialCollectionCapacity) });
}
/**