diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 1ec4e79a4..2f4f59eb6 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -22,6 +22,10 @@
+
+ "AbstractHashedMap" still inherits from "AbstractMap", contrary to what
+ the class javadoc stated. The inheritance will now be removed in v5.0.
+
Changed scope of "CircularFifoQueue#isAtFullCapacity()" to public.
diff --git a/src/main/java/org/apache/commons/collections4/map/AbstractHashedMap.java b/src/main/java/org/apache/commons/collections4/map/AbstractHashedMap.java
index a65a69acf..195cb607e 100644
--- a/src/main/java/org/apache/commons/collections4/map/AbstractHashedMap.java
+++ b/src/main/java/org/apache/commons/collections4/map/AbstractHashedMap.java
@@ -50,7 +50,7 @@ import org.apache.commons.collections4.iterators.EmptyMapIterator;
*
* NOTE: From Commons Collections 3.1 this class extends AbstractMap.
* This is to provide backwards compatibility for ReferenceMap between v3.0 and v3.1.
- * This extends clause will be removed in v4.0.
+ * This extends clause will be removed in v5.0.
*
* @since 3.0
* @version $Id$