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

sebb 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 7f5cde16e Add missing @since for inverted()
7f5cde16e is described below

commit 7f5cde16eddb67df2927abfb1ab3105cfba37b74
Author: Sebb <[email protected]>
AuthorDate: Sat Dec 27 12:52:06 2025 +0000

    Add missing @since for inverted()
---
 src/main/java/org/apache/commons/collections4/MultiValuedMap.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/apache/commons/collections4/MultiValuedMap.java 
b/src/main/java/org/apache/commons/collections4/MultiValuedMap.java
index 4264e6836..31ae1f005 100644
--- a/src/main/java/org/apache/commons/collections4/MultiValuedMap.java
+++ b/src/main/java/org/apache/commons/collections4/MultiValuedMap.java
@@ -146,6 +146,7 @@ public interface MultiValuedMap<K, V> {
      * for each key-to-value mapping in the original.
      *
      * @return a new MultiValuedMap with inverted mappings
+     * @since 4.6.0
      */
     default MultiValuedMap<V, K> inverted() {
         throw new UnsupportedOperationException(getClass() + ".inverted()");

Reply via email to