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

commit 8f00daf0f280b50efa7ecaf749e8f2957f5aea09
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Apr 7 12:36:22 2026 -0400

    Fix broken Javadoc HTML tags
---
 .../java/org/apache/commons/collections4/functors/FunctorUtils.java   | 2 +-
 .../apache/commons/collections4/multimap/AbstractMultiValuedMap.java  | 2 +-
 .../apache/commons/collections4/iterators/FilterListIteratorTest.java | 2 +-
 .../java/org/apache/commons/collections4/map/AbstractMapTest.java     | 4 ++--
 .../commons/collections4/multimap/UnmodifiableMultiValuedMapTest.java | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/collections4/functors/FunctorUtils.java 
b/src/main/java/org/apache/commons/collections4/functors/FunctorUtils.java
index a588ae052..89a935d64 100644
--- a/src/main/java/org/apache/commons/collections4/functors/FunctorUtils.java
+++ b/src/main/java/org/apache/commons/collections4/functors/FunctorUtils.java
@@ -61,7 +61,7 @@ final class FunctorUtils {
     }
 
     /**
-     * A very simple method that coerces Transformer<? super I, ? extends O> 
to Transformer<I, O>.
+     * A very simple method that coerces {@code Transformer<? super I, ? 
extends O>} to {@code Transformer<I, O>}.
      * <p>
      * This method exists
      * simply as centralized documentation and atomic unchecked warning
diff --git 
a/src/main/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMap.java
 
b/src/main/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMap.java
index 1c8acc063..7325048c4 100644
--- 
a/src/main/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMap.java
+++ 
b/src/main/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMap.java
@@ -185,7 +185,7 @@ public abstract class AbstractMultiValuedMap<K, V> 
implements MultiValuedMap<K,
     }
 
     /**
-     * Inner class that provides the Entry<K, V> view
+     * Inner class that provides the {@code Entry<K, V>} view
      */
     private final class EntryValues extends AbstractCollection<Entry<K, V>> {
 
diff --git 
a/src/test/java/org/apache/commons/collections4/iterators/FilterListIteratorTest.java
 
b/src/test/java/org/apache/commons/collections4/iterators/FilterListIteratorTest.java
index 8b6ddc99d..e49651bfd 100644
--- 
a/src/test/java/org/apache/commons/collections4/iterators/FilterListIteratorTest.java
+++ 
b/src/test/java/org/apache/commons/collections4/iterators/FilterListIteratorTest.java
@@ -140,7 +140,7 @@ class FilterListIteratorTest {
     }
 
     /**
-     * Test for {@link "https://issues.apache.org/jira/browse/COLLECTIONS-360 
COLLECTIONS-360"}
+     * Test for https://issues.apache.org/jira/browse/COLLECTIONS-360.
      */
     @Test
     void testCollections360() throws Throwable {
diff --git 
a/src/test/java/org/apache/commons/collections4/map/AbstractMapTest.java 
b/src/test/java/org/apache/commons/collections4/map/AbstractMapTest.java
index 1c7ee770a..a75324e8f 100644
--- a/src/test/java/org/apache/commons/collections4/map/AbstractMapTest.java
+++ b/src/test/java/org/apache/commons/collections4/map/AbstractMapTest.java
@@ -609,7 +609,7 @@ public abstract class AbstractMapTest<M extends Map<K, V>, 
K, V> extends Abstrac
     /**
      * Gets the confirmed.
      *
-     * @return Map<K, V>
+     * @return {@code Map<K, V>}
      */
     public Map<K, V> getConfirmed() {
         return confirmed;
@@ -629,7 +629,7 @@ public abstract class AbstractMapTest<M extends Map<K, V>, 
K, V> extends Abstrac
     /**
      * Gets the map.
      *
-     * @return Map<K, V>
+     * @return {@code Map<K, V>}
      */
     public M getMap() {
         return map;
diff --git 
a/src/test/java/org/apache/commons/collections4/multimap/UnmodifiableMultiValuedMapTest.java
 
b/src/test/java/org/apache/commons/collections4/multimap/UnmodifiableMultiValuedMapTest.java
index 964193896..9d0742ecc 100644
--- 
a/src/test/java/org/apache/commons/collections4/multimap/UnmodifiableMultiValuedMapTest.java
+++ 
b/src/test/java/org/apache/commons/collections4/multimap/UnmodifiableMultiValuedMapTest.java
@@ -47,7 +47,7 @@ public class UnmodifiableMultiValuedMapTest<K, V> extends 
AbstractMultiValuedMap
      * Asserts the given map contains all added values after it was initialized
      * with makeFullMap(). See COLLECTIONS-769.
      *
-     * @param map the MultiValuedMap<K, V> to check
+     * @param map the MultiValuedMap to check.
      */
     private void assertMapContainsAllValues(final MultiValuedMap<K, V> map) {
         final int maxK = getSampleKeySize();

Reply via email to