Deprecate BeanMap, its now available in commons-beanutils-1.7

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@158697 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2005-03-22 23:47:45 +00:00
parent 74f2c73b6d
commit e7860db9af
2 changed files with 8 additions and 1 deletions

View File

@ -33,7 +33,11 @@ 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. Please check the bug fixes to ensure you weren't relying on the behaviour of a bug.
</p> </p>
<p> <p>
There are no new deprecations. There is one new <i>deprecation</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
</p> </p>
<center><h3>NEW CLASSES</h3></center> <center><h3>NEW CLASSES</h3></center>

View File

@ -47,6 +47,9 @@ import org.apache.commons.collections.set.UnmodifiableSet;
* @author James Strachan * @author James Strachan
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Dimiter Dimitrov * @author Dimiter Dimitrov
*
* @deprecated Identical class now available in commons-beanutils (full jar version).
* This version is due to be removed in collections v4.0.
*/ */
public class BeanMap extends AbstractMap implements Cloneable { public class BeanMap extends AbstractMap implements Cloneable {