From 8c5df0bf8eb67b0e3b9cb259a825bb3274eb7d30 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Fri, 14 Jun 2024 21:23:16 -0400 Subject: [PATCH] Fix Javadoc empty tag and close other tag --- .../java/org/apache/commons/collections4/SetValuedMap.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/collections4/SetValuedMap.java b/src/main/java/org/apache/commons/collections4/SetValuedMap.java index 07b9b1e320..42c4483509 100644 --- a/src/main/java/org/apache/commons/collections4/SetValuedMap.java +++ b/src/main/java/org/apache/commons/collections4/SetValuedMap.java @@ -39,7 +39,7 @@ public interface SetValuedMap extends MultiValuedMap { *

* Implementations typically return an empty {@code Set} if no values * have been mapped to the key. - *

+ *

* * @param key the key to retrieve * @return the {@code Set} of values, implementations should return an @@ -55,6 +55,7 @@ public interface SetValuedMap extends MultiValuedMap { * The returned set may be modifiable, but updates will not be * propagated to this set-valued map. In case no mapping was stored for the * specified key, an empty, unmodifiable set will be returned. + *

* * @param key the key to remove values from * @return the {@code Set} of values removed, implementations should