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:
parent
6975b0567d
commit
32155107dd
|
@ -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) });
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue