diff --git a/RELEASE-NOTES.html b/RELEASE-NOTES.html index 606d1437f..3b91bd953 100644 --- a/RELEASE-NOTES.html +++ b/RELEASE-NOTES.html @@ -75,6 +75,7 @@ No interface changes, or deprecations have occurred.
a
would return 2, while
* calling {@link #uniqueSet()} would return {a, b, c}
.
*
- * Note that this interface violates the {@link Collection} contract.
+ * NOTE: This interface violates the {@link Collection} contract.
* The behavior specified in many of these methods is not the same
- * as the behavior specified by Collection
. The noncompliant methods
- * are clearly marked with "(Violation)". A future
- * version of this class will specify the same behavior as Collection
,
- * which unfortunately will break backwards compatibility with this version.
+ * as the behavior specified by Collection
.
+ * The noncompliant methods are clearly marked with "(Violation)".
+ * Exercise caution when using a bag as a Collection
.
+ *
+ * This violation resulted from the original specification of this interface. + * In an ideal world, the interface would be changed to fix the problems, however + * it has been decided to maintain backwards compatibility instead. * * @since Commons Collections 2.0 - * @version $Revision: 1.16 $ $Date: 2004/02/18 01:15:42 $ + * @version $Revision: 1.17 $ $Date: 2004/04/27 20:43:05 $ * * @author Chuck Burdick * @author Stephen Colebourne