Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 35636 invoked from network); 15 Sep 2009 05:58:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Sep 2009 05:58:08 -0000 Received: (qmail 49092 invoked by uid 500); 15 Sep 2009 05:58:08 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 49017 invoked by uid 500); 15 Sep 2009 05:58:07 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 49008 invoked by uid 99); 15 Sep 2009 05:58:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Sep 2009 05:58:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Sep 2009 05:58:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CA5712388A24; Tue, 15 Sep 2009 05:57:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r815136 - /commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/TestAll.java Date: Tue, 15 Sep 2009 05:57:43 -0000 To: commits@commons.apache.org From: bayard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090915055743.CA5712388A24@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bayard Date: Tue Sep 15 05:57:43 2009 New Revision: 815136 URL: http://svn.apache.org/viewvc?rev=815136&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/set/TestAll.java Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/TestAll.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/TestAll.java?rev=815136&r1=815135&r2=815136&view=diff ============================================================================== --- commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/TestAll.java (original) +++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/set/TestAll.java Tue Sep 15 05:57:43 2009 @@ -53,8 +53,6 @@ suite.addTest(TestSynchronizedSortedSet.suite()); suite.addTest(TestTransformedSet.suite()); suite.addTest(TestTransformedSortedSet.suite()); - suite.addTest(TestTypedSet.suite()); - suite.addTest(TestTypedSortedSet.suite()); suite.addTest(TestUnmodifiableSet.suite()); suite.addTest(TestUnmodifiableSortedSet.suite());