Deprecate MultiHashMap in favour of MultiValueMap
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@209683 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eaf850538a
commit
b3e0e25c37
|
@ -38,11 +38,18 @@ This release is fully source and binary compatible with v3.1.
|
|||
Please check the bug fixes to ensure you weren't relying on the behaviour of a bug.
|
||||
</p>
|
||||
<p>
|
||||
There is one new <i>deprecation</i>:<br />
|
||||
There are two new <i>deprecations</i>:<br />
|
||||
BeanMap is now deprecated and will be removed in v4.0.
|
||||
The class is now available in commons-beanutils (full jar version).
|
||||
This change was made to ensure that all bean related collections were in one place (ie. beanutils).
|
||||
If this causes major headaches to anyone please contact commons-dev at jakarta.apache.org
|
||||
If this causes major headaches to anyone please contact commons-dev at jakarta.apache.org.
|
||||
</p>
|
||||
<p>
|
||||
MultiHashMap is now deprecated and will be removed in v4.0.
|
||||
The class is now available as MultiValueMap in the map subpackage.
|
||||
This new version of the class is a decorator and can wrap maps other than HashMap
|
||||
making it much more flexible.
|
||||
If this causes major headaches to anyone please contact commons-dev at jakarta.apache.org.
|
||||
</p>
|
||||
|
||||
<center><h3>NEW CLASSES</h3></center>
|
||||
|
|
|
@ -51,6 +51,9 @@ import org.apache.commons.collections.iterators.EmptyIterator;
|
|||
* <p>
|
||||
* <code>list</code> will be a list containing "A", "B", "C".
|
||||
*
|
||||
* @deprecated Class now available as MultiValueMap in map subpackage.
|
||||
* This version is due to be removed in collections v4.0.
|
||||
*
|
||||
* @since Commons Collections 2.0
|
||||
* @version $Revision$ $Date$
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue