From a8bfe0dd42c4924b61ab58f00eaf970828d90d46 Mon Sep 17 00:00:00 2001 From: Clebert Suconic Date: Fri, 30 Oct 2020 10:02:50 -0400 Subject: [PATCH] NO-JIRA fixing javadoc for release --- .../apache/activemq/artemis/utils/collections/LinkedList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/collections/LinkedList.java b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/collections/LinkedList.java index c0acb45ee7..3d77710c36 100644 --- a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/collections/LinkedList.java +++ b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/collections/LinkedList.java @@ -34,7 +34,7 @@ public interface LinkedList { void clearID(); - /** The ID Supplier function needs to return positive IDs (>= 0). + /** The ID Supplier function needs to return positive IDs (greater or equal to 0) * If you spply a negative ID, it will be considered a null value, and * the value will just be ignored. */ void setIDSupplier(ToLongFunction supplier);