This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
commit 1b74c8259e2c76e0a18e4a3409e604a5519b4a7a Author: Gary Gregory <[email protected]> AuthorDate: Fri Jul 10 08:41:45 2026 -0400 [COLLECTIONS-896] Add TransformedMultiSet plus fill minor gaps for MultiSet vs. Bags (#708). Javadoc --- .../org/apache/commons/collections4/multiset/TransformedMultiSet.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/multiset/TransformedMultiSet.java b/src/main/java/org/apache/commons/collections4/multiset/TransformedMultiSet.java index 66565892e..25025a273 100644 --- a/src/main/java/org/apache/commons/collections4/multiset/TransformedMultiSet.java +++ b/src/main/java/org/apache/commons/collections4/multiset/TransformedMultiSet.java @@ -47,6 +47,7 @@ public class TransformedMultiSet<E> extends TransformedCollection<E> implements * If there are any elements already in the multiset being decorated, they * will be transformed by this method. * Contrast this with {@link #transformingMultiSet(MultiSet, Transformer)}. + * </p> * * @param <E> The type of the elements in the multiset * @param multiset the multiset to decorate, must not be null @@ -73,6 +74,8 @@ public class TransformedMultiSet<E> extends TransformedCollection<E> implements * <p> * If there are any elements already in the multiset being decorated, they * are NOT transformed. Contrast this with {@link #transformedMultiSet(MultiSet, Transformer)}. + * </p> + * * * @param <E> The type of the elements in the multiset * @param multiset the multiset to decorate, must not be null @@ -90,6 +93,7 @@ public class TransformedMultiSet<E> extends TransformedCollection<E> implements * <p> * If there are any elements already in the multiset being decorated, they * are NOT transformed. + * </p> * * @param multiset the multiset to decorate, must not be null * @param transformer the transformer to use for conversion, must not be null
