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 2010/10/19 03:37:12 UTC

svn commit: r1024080 - /commons/proper/collections/trunk/src/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java

Author: sebb
Date: Tue Oct 19 01:37:11 2010
New Revision: 1024080

URL: http://svn.apache.org/viewvc?rev=1024080&view=rev
Log:
raw type

Modified:
    commons/proper/collections/trunk/src/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java

Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java?rev=1024080&r1=1024079&r2=1024080&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java (original)
+++ commons/proper/collections/trunk/src/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java Tue Oct 19 01:37:11 2010
@@ -89,7 +89,7 @@ public final class UnmodifiableBoundedCo
         if (coll instanceof BoundedCollection == false) {
             throw new IllegalArgumentException("The collection is not a bounded collection");
         }
-        return new UnmodifiableBoundedCollection((BoundedCollection<E>) coll);
+        return new UnmodifiableBoundedCollection<E>((BoundedCollection<E>) coll);
     }
 
     /**