diff --git a/src/test/org/apache/commons/collections/TestFastHashMap.java b/src/test/org/apache/commons/collections/TestFastHashMap.java index e87587b8a..b08995fef 100644 --- a/src/test/org/apache/commons/collections/TestFastHashMap.java +++ b/src/test/org/apache/commons/collections/TestFastHashMap.java @@ -24,7 +24,7 @@ import org.apache.commons.collections.map.AbstractTestMap; /** * Tests FastHashMap. * - * @version $Revision: 1.15 $ $Date: 2004/02/18 01:20:35 $ + * @version $Revision: 1.16 $ $Date: 2004/04/12 12:01:38 $ * * @author Jason van Zyl */ @@ -49,11 +49,4 @@ public class TestFastHashMap extends AbstractTestMap { return (fhm); } - /** - * There is a bug in JDK1.2 HashMap; the keySet() will incorrectly - * return false when a null value is removed. - */ - public boolean isAllowNullValue() { - return false; - } } diff --git a/src/test/org/apache/commons/collections/TestFastTreeMap.java b/src/test/org/apache/commons/collections/TestFastTreeMap.java index 0c820c997..55d1d5ec0 100644 --- a/src/test/org/apache/commons/collections/TestFastTreeMap.java +++ b/src/test/org/apache/commons/collections/TestFastTreeMap.java @@ -23,7 +23,7 @@ import junit.framework.Test; /** * Tests FastTreeMap. * - * @version $Revision: 1.14 $ $Date: 2004/02/18 01:20:35 $ + * @version $Revision: 1.15 $ $Date: 2004/04/12 12:01:38 $ * * @author Jason van Zyl */ @@ -59,14 +59,6 @@ public class TestFastTreeMap extends TestTreeMap { return false; } - /** - * There is a bug in JDK1.2.2 TreeMap; the keySet will incorrectly - * return false when a null value is removed - */ - public boolean isAllowNullValue() { - return false; - } - public void setUp() { map = (TreeMap) makeEmptyMap(); }