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:58:01 UTC

svn commit: r815147 - /commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestExtendedProperties.java

Author: bayard
Date: Tue Sep 15 05:58:01 2009
New Revision: 815147

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

    ------------------------------------------------------------------------
    r468687 | scolebourne | 2006-10-28 05:53:28 -0700 (Sat, 28 Oct 2006) | 1 line
    
    COLLECTIONS-229 - Remove deprecated classes and code
    ------------------------------------------------------------------------

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

Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestExtendedProperties.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestExtendedProperties.java?rev=815147&r1=815146&r2=815147&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestExtendedProperties.java (original)
+++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestExtendedProperties.java Tue Sep 15 05:58:01 2009
@@ -326,14 +326,6 @@
         assertEquals("import", a.getInclude());
         assertEquals("include", b.getInclude());
         
-        a.setInclude("");
-        assertEquals(null, a.getInclude());
-        assertEquals("include", b.getInclude());
-        
-        a.setInclude("hi");
-        assertEquals("hi", a.getInclude());
-        assertEquals("include", b.getInclude());
-        
         a.setInclude(null);
         assertEquals(null, a.getInclude());
         assertEquals("include", b.getInclude());