This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new c1f3cb238 Javadoc
c1f3cb238 is described below

commit c1f3cb2382c6edb6324ab50e925af8ef52add786
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 21 15:32:21 2025 -0500

    Javadoc
---
 src/main/java/org/apache/commons/collections4/CollectionUtils.java    | 4 ++--
 .../org/apache/commons/collections4/bloomfilter/BitMapExtractor.java  | 2 +-
 .../apache/commons/collections4/bloomfilter/BloomFilterExtractor.java | 2 +-
 .../org/apache/commons/collections4/bloomfilter/CellExtractor.java    | 2 +-
 .../org/apache/commons/collections4/bloomfilter/LongBiPredicate.java  | 2 +-
 .../org/apache/commons/collections4/comparators/ComparatorChain.java  | 4 ++--
 .../java/org/apache/commons/collections4/iterators/IteratorChain.java | 2 +-
 src/main/java/org/apache/commons/collections4/map/MultiValueMap.java  | 4 ++--
 8 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/main/java/org/apache/commons/collections4/CollectionUtils.java 
b/src/main/java/org/apache/commons/collections4/CollectionUtils.java
index d28636ee9..2ba14cc76 100644
--- a/src/main/java/org/apache/commons/collections4/CollectionUtils.java
+++ b/src/main/java/org/apache/commons/collections4/CollectionUtils.java
@@ -736,9 +736,9 @@ public class CollectionUtils {
      * </p>
      * <p>
      * This is equivalent to
-     * {@code {@link #subtract subtract}({@link #union union(a,b)},{@link 
#intersection intersection(a,b)})}
+     * {@code {@link #subtract subtract}({@link #union union(a, b)},{@link 
#intersection intersection(a, b)})}
      * or
-     * {@code {@link #union union}({@link #subtract subtract(a,b)},{@link 
#subtract subtract(b,a)})}.
+     * {@code {@link #union union}({@link #subtract subtract(a, b)},{@link 
#subtract subtract(b, a)})}.
      * </p>
      *
      * @param a the first collection, must not be null
diff --git 
a/src/main/java/org/apache/commons/collections4/bloomfilter/BitMapExtractor.java
 
b/src/main/java/org/apache/commons/collections4/bloomfilter/BitMapExtractor.java
index 343d6b133..886a43057 100644
--- 
a/src/main/java/org/apache/commons/collections4/bloomfilter/BitMapExtractor.java
+++ 
b/src/main/java/org/apache/commons/collections4/bloomfilter/BitMapExtractor.java
@@ -131,7 +131,7 @@ public interface BitMapExtractor {
      * arrays reimplement this method.</em>
      * </p>
      *
-     * @param other The other BitMapExtractor that provides the y values in 
the (x,y) pair.
+     * @param other The other BitMapExtractor that provides the y values in 
the (x, y) pair.
      * @param func  The function to apply.
      * @return A LongPredicate that tests this BitMapExtractor's bitmap values 
in order.
      */
diff --git 
a/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilterExtractor.java
 
b/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilterExtractor.java
index 88a24166e..a7e27fc0e 100644
--- 
a/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilterExtractor.java
+++ 
b/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilterExtractor.java
@@ -120,7 +120,7 @@ public interface BloomFilterExtractor {
      * instances, or references to the filters in the collection.</em>
      * </p>
      *
-     * @param other The other BloomFilterExtractor that provides the y values 
in the (x,y) pair.
+     * @param other The other BloomFilterExtractor that provides the y values 
in the (x, y) pair.
      * @param func  The function to apply.
      * @return {@code true} if the {@code func} returned {@code true} for 
every pair, {@code false} otherwise.
      */
diff --git 
a/src/main/java/org/apache/commons/collections4/bloomfilter/CellExtractor.java 
b/src/main/java/org/apache/commons/collections4/bloomfilter/CellExtractor.java
index f6c8e574f..0334b7479 100644
--- 
a/src/main/java/org/apache/commons/collections4/bloomfilter/CellExtractor.java
+++ 
b/src/main/java/org/apache/commons/collections4/bloomfilter/CellExtractor.java
@@ -70,7 +70,7 @@ public interface CellExtractor extends IndexExtractor {
      * <li>The CellExtractor aggregates duplicate indices from the 
IndexExtractor.</li>
      * </ul>
      *
-     * <p>A CellExtractor that outputs the mapping [(1,2),(2,3),(3,1)] can be 
created from many combinations
+     * <p>A CellExtractor that outputs the mapping [(1, 2),(2, 3),(3, 1)] can 
be created from many combinations
      * of indices including:</p>
      * <pre>
      * [1, 1, 2, 2, 2, 3]
diff --git 
a/src/main/java/org/apache/commons/collections4/bloomfilter/LongBiPredicate.java
 
b/src/main/java/org/apache/commons/collections4/bloomfilter/LongBiPredicate.java
index ff2f3b49d..9d36ed692 100644
--- 
a/src/main/java/org/apache/commons/collections4/bloomfilter/LongBiPredicate.java
+++ 
b/src/main/java/org/apache/commons/collections4/bloomfilter/LongBiPredicate.java
@@ -20,7 +20,7 @@ package org.apache.commons.collections4.bloomfilter;
  * Represents a function that accepts a two long-valued argument and produces 
a binary result.
  * This is the long-consuming primitive specialization for {@code BiPredicate}.
  * <p>
- * This is a functional interface whose functional method is {@code 
test(long,long)}.
+ * This is a functional interface whose functional method is {@code test(long, 
long)}.
  * </p>
  *
  * @since 4.5.0-M1
diff --git 
a/src/main/java/org/apache/commons/collections4/comparators/ComparatorChain.java
 
b/src/main/java/org/apache/commons/collections4/comparators/ComparatorChain.java
index 05fa8acab..5916d5b74 100644
--- 
a/src/main/java/org/apache/commons/collections4/comparators/ComparatorChain.java
+++ 
b/src/main/java/org/apache/commons/collections4/comparators/ComparatorChain.java
@@ -66,7 +66,7 @@ public class ComparatorChain<E> implements Comparator<E>, 
Serializable {
     /**
      * Constructs a ComparatorChain with no Comparators.
      * You must add at least one Comparator before calling
-     * the compare(Object,Object) method, or an
+     * the compare(Object, Object) method, or an
      * UnsupportedOperationException is thrown
      */
     public ComparatorChain() {
@@ -182,7 +182,7 @@ public class ComparatorChain<E> implements Comparator<E>, 
Serializable {
 
     /**
      * Perform comparisons on the Objects as per
-     * Comparator.compare(o1,o2).
+     * Comparator.compare(o1, o2).
      *
      * @param o1  the first object to compare
      * @param o2  the second object to compare
diff --git 
a/src/main/java/org/apache/commons/collections4/iterators/IteratorChain.java 
b/src/main/java/org/apache/commons/collections4/iterators/IteratorChain.java
index 19ed92d6a..031fb650c 100644
--- a/src/main/java/org/apache/commons/collections4/iterators/IteratorChain.java
+++ b/src/main/java/org/apache/commons/collections4/iterators/IteratorChain.java
@@ -69,7 +69,7 @@ public class IteratorChain<E> implements Iterator<E> {
     private Iterator<? extends E> lastUsedIterator;
 
     /**
-     * ComparatorChain is "locked" after the first time compare(Object,Object)
+     * ComparatorChain is "locked" after the first time compare(Object, Object)
      * is called
      */
     private boolean isLocked;
diff --git 
a/src/main/java/org/apache/commons/collections4/map/MultiValueMap.java 
b/src/main/java/org/apache/commons/collections4/map/MultiValueMap.java
index c1756e3fa..f75d62389 100644
--- a/src/main/java/org/apache/commons/collections4/map/MultiValueMap.java
+++ b/src/main/java/org/apache/commons/collections4/map/MultiValueMap.java
@@ -471,9 +471,9 @@ public class MultiValueMap<K, V> extends 
AbstractMapDecorator<K, Object> impleme
      * correctly handled.
      * <p>
      * If you call this method with a normal map, each entry is
-     * added using {@code put(Object,Object)}.
+     * added using {@code put(Object, Object)}.
      * If you call this method with a multi map, each entry is
-     * added using {@code putAll(Object,Collection)}.
+     * added using {@code putAll(Object, Collection)}.
      * </p>
      *
      * @param map  the map to copy (either a normal or multi map)

Reply via email to