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
    ------------------------------------------------------------------------


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@815147 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2009-09-15 05:58:01 +00:00
parent 68ca4c2cb8
commit d6175c0007

View File

@ -326,14 +326,6 @@ public class TestExtendedProperties extends TestCase {
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());