From 957830e84c558f04fc20fcfb691bf80652eb673e Mon Sep 17 00:00:00 2001 From: Clebert Suconic Date: Wed, 26 Feb 2025 12:28:41 -0500 Subject: [PATCH] NO-JIRA silly grammar mistake --- .../activemq/artemis/utils/collections/LinkedListIterator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/collections/LinkedListIterator.java b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/collections/LinkedListIterator.java index 5f0c2482b59..5508934ffa7 100644 --- a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/collections/LinkedListIterator.java +++ b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/collections/LinkedListIterator.java @@ -27,7 +27,7 @@ public interface LinkedListIterator extends Iterator, AutoCloseable { void repeat(); - /** This method is doing exactly what {@link Iterator#remove()} would do, however it will return the removed element being removed. */ + /** This method is doing exactly what {@link Iterator#remove()} would do, however it will return the element being removed. */ E removeLastElement(); @Override