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


Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/commons-collections/commit/97c3230e
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/97c3230e
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/97c3230e

Branch: refs/heads/collections_1_x_branch
Commit: 97c3230e8332fe8ca9e0667b356eda0a128f2727
Parents: 1411769
Author: Morgan James Delagrange <morg...@apache.org>
Authored: Tue Feb 26 06:28:41 2002 +0000
Committer: Morgan James Delagrange <morg...@apache.org>
Committed: Tue Feb 26 06:28:41 2002 +0000

----------------------------------------------------------------------
 .../org/apache/commons/collections/TestMap.java | 21 ++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/97c3230e/src/test/org/apache/commons/collections/TestMap.java
----------------------------------------------------------------------
diff --git a/src/test/org/apache/commons/collections/TestMap.java 
b/src/test/org/apache/commons/collections/TestMap.java
index 5847898..7c18049 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;

Reply via email to