From 97c3230e8332fe8ca9e0667b356eda0a128f2727 Mon Sep 17 00:00:00 2001 From: Morgan James Delagrange Date: Tue, 26 Feb 2002 06:28:41 +0000 Subject: [PATCH] removing some unwanted code git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/branches/collections_1_x_branch@130594 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/commons/collections/TestMap.java | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/test/org/apache/commons/collections/TestMap.java b/src/test/org/apache/commons/collections/TestMap.java index 58478988a..7c1804903 100644 --- a/src/test/org/apache/commons/collections/TestMap.java +++ b/src/test/org/apache/commons/collections/TestMap.java @@ -1,7 +1,7 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestMap.java,v 1.3.2.2 2002/02/26 06:17:51 morgand Exp $ - * $Revision: 1.3.2.2 $ - * $Date: 2002/02/26 06:17:51 $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestMap.java,v 1.3.2.3 2002/02/26 06:28:41 morgand Exp $ + * $Revision: 1.3.2.3 $ + * $Date: 2002/02/26 06:28:41 $ * * ==================================================================== * @@ -87,7 +87,7 @@ import java.util.NoSuchElementException; * * @author Michael Smith * @author Rodney Waldhoff - * @version $Id: TestMap.java,v 1.3.2.2 2002/02/26 06:17:51 morgand Exp $ + * @version $Id: TestMap.java,v 1.3.2.3 2002/02/26 06:28:41 morgand Exp $ */ public abstract class TestMap extends TestObject { @@ -959,10 +959,14 @@ public abstract class TestMap extends TestObject { * against the canonical version in CVS. */ public void testEmptyMapCompatibility() throws IOException, ClassNotFoundException { - Map map = makeEmptyMap(); + Map map = null; + /** + * Create canonical objects with this code + map = makeEmptyMap(); if (!(map instanceof Serializable)) return; writeExternalFormToDisk((Serializable) map, getCanonicalEmptyMapName(map)); + */ // test to make sure the canonical form has been preserved if (!(makeEmptyMap() instanceof Serializable)) return; @@ -975,10 +979,15 @@ public abstract class TestMap extends TestObject { * against the canonical version in CVS. */ public void testFullMapCompatibility() throws IOException, ClassNotFoundException { - Map map = makeFullMap(); + + Map map = null; + /** + * Create canonical objects with this code + map = makeFullMap(); if (!(map instanceof Serializable)) return; writeExternalFormToDisk((Serializable) map, getCanonicalFullMapName(map)); + */ // test to make sure the canonical form has been preserved if (!(makeFullMap() instanceof Serializable)) return;