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 2673e5dfa Javadoc
2673e5dfa is described below
commit 2673e5dfae5428e29751ec130f50643872a33999
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Oct 19 14:51:55 2024 -0400
Javadoc
- Close HTML tags
- Remove dead inline comments
---
src/main/java/org/apache/commons/collections4/ArrayStack.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/main/java/org/apache/commons/collections4/ArrayStack.java
b/src/main/java/org/apache/commons/collections4/ArrayStack.java
index f10f96f86..26831efeb 100644
--- a/src/main/java/org/apache/commons/collections4/ArrayStack.java
+++ b/src/main/java/org/apache/commons/collections4/ArrayStack.java
@@ -72,6 +72,7 @@ public class ArrayStack<E> extends ArrayList<E> {
* <p>
* This method exists for compatibility with {@link java.util.Stack}.
* New users of this class should use {@code isEmpty} instead.
+ * </p>
*
* @return true if the stack is currently empty
*/