Add change log entry for CompliantBag.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1493939 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-06-17 21:08:51 +00:00
parent 7725a72c73
commit c5cc3a04e2
2 changed files with 5 additions and 0 deletions

View File

@ -64,6 +64,7 @@ Removed classes
New classes
-----------
o [COLLECTIONS-468] CompliantBag - decorates another Bag to make it comply with the Collection contract.
o [COLLECTIONS-463] PushbackIterator - supports pushback of elements during iteration. Thanks to Andy Seaborne, Claude Warren.
o [COLLECTIONS-462] PeekingIterator - supports one-element lookahead during iteration. Thanks to Andy Seaborne, Claude Warren.
o [COLLECTIONS-432] CircularFifoQueue - analogous class to CircularFifoBuffer for the Queue interface

View File

@ -29,6 +29,10 @@
<action issue="COLLECTIONS-470" dev="tn" type="update" due-to="sebb">
Renamed class "TransformedMap" in package "splitmap" to "TransformedSplitMap" to avoid
name clash with similar class in package "map".
</action>
<action issue="COLLECTIONS-468" dev="tn" type="add">
Added bag decorator "CompliantBag" which decorates a bag to make it comply with the
Collection contract.
</action>
<action issue="COLLECTIONS-466" dev="tn" type="update">
Replaced "Collection" with "Iterable" for method arguments where applicable.