You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/04/21 22:59:57 UTC

svn commit: r1470344 - /commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/collection/TransformedCollectionTest.java

Author: sebb
Date: Sun Apr 21 20:59:57 2013
New Revision: 1470344

URL: http://svn.apache.org/r1470344
Log:
Fix raw type

Modified:
    commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/collection/TransformedCollectionTest.java

Modified: commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/collection/TransformedCollectionTest.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/collection/TransformedCollectionTest.java?rev=1470344&r1=1470343&r2=1470344&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/collection/TransformedCollectionTest.java (original)
+++ commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/collection/TransformedCollectionTest.java Sun Apr 21 20:59:57 2013
@@ -99,7 +99,7 @@ public class TransformedCollectionTest e
     }
 
     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);