You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sk...@apache.org on 2006/07/10 08:03:15 UTC

svn commit: r420429 - /jakarta/commons/proper/logging/trunk/src/test/org/apache/commons/logging/impl/WeakHashtableTest.java

Author: skitching
Date: Sun Jul  9 23:03:14 2006
New Revision: 420429

URL: http://svn.apache.org/viewvc?rev=420429&view=rev
Log:
Remove weird unicode char in comments that causes compile warnings

Modified:
    jakarta/commons/proper/logging/trunk/src/test/org/apache/commons/logging/impl/WeakHashtableTest.java

Modified: jakarta/commons/proper/logging/trunk/src/test/org/apache/commons/logging/impl/WeakHashtableTest.java
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/logging/trunk/src/test/org/apache/commons/logging/impl/WeakHashtableTest.java?rev=420429&r1=420428&r2=420429&view=diff
==============================================================================
--- jakarta/commons/proper/logging/trunk/src/test/org/apache/commons/logging/impl/WeakHashtableTest.java (original)
+++ jakarta/commons/proper/logging/trunk/src/test/org/apache/commons/logging/impl/WeakHashtableTest.java Sun Jul  9 23:03:14 2006
@@ -56,7 +56,7 @@
         weakHashtable.put(keyThree, valueThree);
     }
 
-    /** Tests public boolean contains(ObjectÊvalue) */
+    /** Tests public boolean contains(Object value) */
     public void testContains() throws Exception {
         assertFalse(weakHashtable.contains(new Long(1)));
         assertFalse(weakHashtable.contains(new Long(2)));
@@ -67,7 +67,7 @@
         assertFalse(weakHashtable.contains(new Long(400)));
     }
     
-    /** Tests public boolean containsKey(ObjectÊkey) */
+    /** Tests public boolean containsKey(Object key) */
     public void testContainsKey() throws Exception {
         assertTrue(weakHashtable.containsKey(new Long(1)));
         assertTrue(weakHashtable.containsKey(new Long(2)));
@@ -78,7 +78,7 @@
         assertFalse(weakHashtable.containsKey(new Long(400)));    
     }
     
-    /** Tests public boolean containsValue(ObjectÊvalue) */
+    /** Tests public boolean containsValue(Object value) */
     public void testContainsValue() throws Exception {
         assertFalse(weakHashtable.containsValue(new Long(1)));
         assertFalse(weakHashtable.containsValue(new Long(2)));
@@ -119,7 +119,7 @@
         }
     }
     
-    /** Tests public Object get(ObjectÊkey) */
+    /** Tests public Object get(Object�key) */
     public void testGet() throws Exception {
         assertEquals(valueOne, weakHashtable.get(keyOne));
         assertEquals(valueTwo, weakHashtable.get(keyTwo));
@@ -148,7 +148,7 @@
         assertTrue(keySet.contains(keyThree));
     }
     
-    /** Tests public Object put(ObjectÊkey, ObjectÊvalue) */
+    /** Tests public Object put(Object key, Object value) */
     public void testPut() throws Exception {
         Long anotherKey = new Long(2004);
         weakHashtable.put(anotherKey, new Long(1066));
@@ -174,7 +174,7 @@
         assertNotNull("did not throw an exception adding a null value", caught);
     }
     
-    /** Tests public void putAll(MapÊt) */
+    /** Tests public void putAll(Map t) */
     public void testPutAll() throws Exception {
         Map newValues = new HashMap();
         Long newKey = new Long(1066);
@@ -190,7 +190,7 @@
         assertEquals(anotherNewValue, weakHashtable.get(anotherNewKey));
     }
     
-    /** Tests public Object remove(ObjectÊkey) */
+    /** Tests public Object remove(Object�key) */
     public void testRemove() throws Exception {
         weakHashtable.remove(keyOne);
         assertEquals(2, weakHashtable.size());



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org