From 2817281db97345135af69d49c5af1cbf2a42ca05 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Mon, 28 Oct 2024 07:47:45 -0400 Subject: [PATCH] Fix Javadoc warnings --- src/main/java/org/apache/commons/collections4/Put.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/Put.java b/src/main/java/org/apache/commons/collections4/Put.java index 687fd66b4..a69fc2d94 100644 --- a/src/main/java/org/apache/commons/collections4/Put.java +++ b/src/main/java/org/apache/commons/collections4/Put.java @@ -37,13 +37,18 @@ import java.util.Map; public interface Put { /** + * Removes all of the mappings from this map. + * * @see Map#clear() */ void clear(); /** + * Associates the specified value with the specified key in this map. + *

* Note that the return type is Object, rather than V as in the Map interface. * See the class Javadoc for further info. + *

* * @param key key with which the specified value is to be associated * @param value value to be associated with the specified key @@ -57,6 +62,8 @@ public interface Put { Object put(K key, V value); /** + * Copies all of the mappings from the specified map to this map. + * * @param t mappings to be stored in this map * @see Map#putAll(Map) */