This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new 2817281db Fix Javadoc warnings
2817281db is described below

commit 2817281db97345135af69d49c5af1cbf2a42ca05
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Oct 28 07:47:45 2024 -0400

    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<K, V> {
 
     /**
+     * Removes all of the mappings from this map.
+     *
      * @see Map#clear()
      */
     void clear();
 
     /**
+     * Associates the specified value with the specified key in this map.
+     * <p>
      * Note that the return type is Object, rather than V as in the Map 
interface.
      * See the class Javadoc for further info.
+     * </p>
      *
      * @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<K, V> {
     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)
      */

Reply via email to