You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2009/09/15 07:57:18 UTC

svn commit: r815120 - /commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/TestAll.java

Author: bayard
Date: Tue Sep 15 05:57:18 2009
New Revision: 815120

URL: http://svn.apache.org/viewvc?rev=815120&view=rev
Log:
Merging from -r468106:814127 of collections_jdk5_branch - namely where this code was generified; mostly in r738956.

Also see the following revisions:

    ------------------------------------------------------------------------
    r471166 | scolebourne | 2006-11-04 03:33:22 -0800 (Sat, 04 Nov 2006) | 1 line
    
    Removed Typed* containers such as TypedList and TypedMap as generics now provides type safety
    ------------------------------------------------------------------------

Modified:
    commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/TestAll.java

Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/TestAll.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/TestAll.java?rev=815120&r1=815119&r2=815120&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/TestAll.java (original)
+++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/TestAll.java Tue Sep 15 05:57:18 2009
@@ -52,7 +52,6 @@
         suite.addTest(TestSetUniqueList.suite());
         suite.addTest(TestSynchronizedList.suite());
         suite.addTest(TestTransformedList.suite());
-        suite.addTest(TestTypedList.suite());
         suite.addTest(TestUnmodifiableList.suite());
         
         return suite;