[COLLECTIONS-542] Fix javadoc of AbstractHashedMap wrt inheritance of AbstractMap.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1649010 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2015-01-02 12:32:37 +00:00
parent f30855735a
commit 6180e44ff3
2 changed files with 5 additions and 1 deletions

View File

@ -22,6 +22,10 @@
<body>
<release version="4.1" date="TBD" description="">
<action issue="COLLECTIONS-542" dev="tn" type="fix">
"AbstractHashedMap" still inherits from "AbstractMap", contrary to what
the class javadoc stated. The inheritance will now be removed in v5.0.
</action>
<action issue="COLLECTIONS-539" dev="tn" type="add" due-to="Guram Savinov">
Changed scope of "CircularFifoQueue#isAtFullCapacity()" to public.
</action>

View File

@ -50,7 +50,7 @@ import org.apache.commons.collections4.iterators.EmptyMapIterator;
* <p>
* 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$