From 19000a3c611476099627a59e61e52d3c035269dd Mon Sep 17 00:00:00 2001 From: Laurent Laborde Date: Wed, 13 Sep 2023 20:07:41 +0200 Subject: [PATCH] remove useless p tag Signed-off-by: Laurent Laborde --- .../java/org/opensearch/core/common/util/CollectionUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/src/main/java/org/opensearch/core/common/util/CollectionUtils.java b/libs/core/src/main/java/org/opensearch/core/common/util/CollectionUtils.java index 27869786b5deb..96d66053a6751 100644 --- a/libs/core/src/main/java/org/opensearch/core/common/util/CollectionUtils.java +++ b/libs/core/src/main/java/org/opensearch/core/common/util/CollectionUtils.java @@ -104,7 +104,7 @@ public static List rotate(final List list, int distance) { /** * In place de-duplicates items in a list

* Noop if the list is empty or has one item. - *

+ * * @throws NullPointerException if the list is `null` or comparator is `null` * @param array the list to de-duplicate * @param comparator the comparator to use to compare items