You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2008/11/18 14:19:23 UTC

svn commit: r718572 - /harmony/standard/classlib/branches/java5/modules/concurrent/src/test/java/ConcurrentHashMapTest.java

Author: tellison
Date: Tue Nov 18 05:19:22 2008
New Revision: 718572

URL: http://svn.apache.org/viewvc?rev=718572&view=rev
Log:
Part of r718325.
Fix for HARMONY-6008 ([classlib] Fix japi found differences between harmony and spec)

Modified:
    harmony/standard/classlib/branches/java5/modules/concurrent/src/test/java/ConcurrentHashMapTest.java

Modified: harmony/standard/classlib/branches/java5/modules/concurrent/src/test/java/ConcurrentHashMapTest.java
URL: http://svn.apache.org/viewvc/harmony/standard/classlib/branches/java5/modules/concurrent/src/test/java/ConcurrentHashMapTest.java?rev=718572&r1=718571&r2=718572&view=diff
==============================================================================
--- harmony/standard/classlib/branches/java5/modules/concurrent/src/test/java/ConcurrentHashMapTest.java (original)
+++ harmony/standard/classlib/branches/java5/modules/concurrent/src/test/java/ConcurrentHashMapTest.java Tue Nov 18 05:19:22 2008
@@ -101,15 +101,6 @@
     }
 
     /**
-     *   Clone creates an equal map
-     */
-    public void testClone() {
-        ConcurrentHashMap map = map5();
-        ConcurrentHashMap m2 = (ConcurrentHashMap)(map.clone());
-	assertEquals(map, m2);
-    }
-
-    /**
      *  get returns the correct element at the given key,
      *  or null if not present
      */