Fix raw type

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1470344 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2013-04-21 20:59:57 +00:00
parent a183825420
commit 724fa9400f

View File

@ -99,7 +99,7 @@ public class TransformedCollectionTest extends AbstractCollectionTest<Object> {
}
public void testTransformedCollection_decorateTransform() {
final Collection originalCollection = new ArrayList();
final Collection<Object> originalCollection = new ArrayList<Object>();
final Object[] els = getFullElements();
for (final Object el : els) {
originalCollection.add(el);