From b2c7419e38a8aa6e7769154a612403769ccf0b32 Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Tue, 27 Apr 2004 21:28:40 +0000 Subject: [PATCH] Javadoc git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131680 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/collections/map/AbstractHashedMap.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/collections/map/AbstractHashedMap.java b/src/java/org/apache/commons/collections/map/AbstractHashedMap.java index ff95cc03b..54eb0ccc4 100644 --- a/src/java/org/apache/commons/collections/map/AbstractHashedMap.java +++ b/src/java/org/apache/commons/collections/map/AbstractHashedMap.java @@ -46,7 +46,7 @@ import org.apache.commons.collections.MapIterator; * need for unusual subclasses is here. * * @since Commons Collections 3.0 - * @version $Revision: 1.16 $ $Date: 2004/04/09 22:52:48 $ + * @version $Revision: 1.17 $ $Date: 2004/04/27 21:28:40 $ * * @author java util HashMap * @author Stephen Colebourne @@ -384,7 +384,7 @@ public class AbstractHashedMap implements IterableMap { /** * Compares two values, in external form, to see if they are equal. - * This implementation uses the equals method and assumes neither key is null. + * This implementation uses the equals method and assumes neither value is null. * Subclasses can override this to match differently. * * @param value1 the first value to compare passed in from outside