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:56:57 UTC

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

Author: bayard
Date: Tue Sep 15 05:56:57 2009
New Revision: 815109

URL: http://svn.apache.org/viewvc?rev=815109&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/bag/TestAll.java

Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/bag/TestAll.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/bag/TestAll.java?rev=815109&r1=815108&r2=815109&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/org/apache/commons/collections/bag/TestAll.java (original)
+++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/bag/TestAll.java Tue Sep 15 05:56:57 2009
@@ -48,8 +48,6 @@
         suite.addTest(TestTransformedBag.suite());
         suite.addTest(TestTransformedSortedBag.suite());
         suite.addTest(TestTreeBag.suite());
-        suite.addTest(TestTypedBag.suite());
-        suite.addTest(TestTypedSortedBag.suite());
         
         return suite;
     }