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 876419b5a Javadoc 876419b5a is described below commit 876419b5a4aaa6c87abf62b627f441896fc115f4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Dec 17 14:29:49 2023 -0500 Javadoc --- src/main/java/org/apache/commons/collections4/ArrayStack.java | 2 +- src/main/java/org/apache/commons/collections4/map/StaticBucketMap.java | 2 +- .../apache/commons/collections4/collection/AbstractCollectionTest.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/ArrayStack.java b/src/main/java/org/apache/commons/collections4/ArrayStack.java index bc2e0f32a..2a2845135 100644 --- a/src/main/java/org/apache/commons/collections4/ArrayStack.java +++ b/src/main/java/org/apache/commons/collections4/ArrayStack.java @@ -70,7 +70,7 @@ public class ArrayStack<E> extends ArrayList<E> { /** * Return {@code true} if this stack is currently empty. * <p> - * This method exists for compatibility with {@code java.util.Stack}. + * This method exists for compatibility with {@link java.util.Stack}. * New users of this class should use {@code isEmpty} instead. * * @return true if the stack is currently empty diff --git a/src/main/java/org/apache/commons/collections4/map/StaticBucketMap.java b/src/main/java/org/apache/commons/collections4/map/StaticBucketMap.java index a1a273e55..3fb9a7c00 100644 --- a/src/main/java/org/apache/commons/collections4/map/StaticBucketMap.java +++ b/src/main/java/org/apache/commons/collections4/map/StaticBucketMap.java @@ -30,7 +30,7 @@ import org.apache.commons.collections4.KeyValue; /** * A StaticBucketMap is an efficient, thread-safe implementation of - * {@code java.util.Map} that performs well in a highly + * {@link java.util.Map} that performs well in a highly * thread-contentious environment. The map supports very efficient * {@link #get(Object) get}, {@link #put(Object,Object) put}, * {@link #remove(Object) remove} and {@link #containsKey(Object) containsKey} diff --git a/src/test/java/org/apache/commons/collections4/collection/AbstractCollectionTest.java b/src/test/java/org/apache/commons/collections4/collection/AbstractCollectionTest.java index 39786659e..0ff5cea7d 100644 --- a/src/test/java/org/apache/commons/collections4/collection/AbstractCollectionTest.java +++ b/src/test/java/org/apache/commons/collections4/collection/AbstractCollectionTest.java @@ -90,7 +90,7 @@ import org.junit.jupiter.api.Test; * for the collection. Basically, the operation is performed against your * collection implementation, and an identical operation is performed against a * <i>confirmed</i> collection implementation. A confirmed collection - * implementation is something like {@code java.util.ArrayList}, which is + * implementation is something like {@link java.util.ArrayList}, which is * known to conform exactly to its collection interface's contract. After the * operation takes place on both your collection implementation and the * confirmed collection implementation, the two collections are compared to see