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

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

commit 8b5dbb8bab26ca60da837f0099f010720601c72d
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Jul 9 19:42:28 2026 -0400

    Add missing Javadoc and tags.
---
 src/main/java/org/apache/commons/collections4/MultiValuedMap.java | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/collections4/MultiValuedMap.java 
b/src/main/java/org/apache/commons/collections4/MultiValuedMap.java
index d5304c706..49d8fcfe3 100644
--- a/src/main/java/org/apache/commons/collections4/MultiValuedMap.java
+++ b/src/main/java/org/apache/commons/collections4/MultiValuedMap.java
@@ -141,11 +141,10 @@ public interface MultiValuedMap<K, V> {
     Collection<V> get(K key);
 
     /**
-     * Returns a new MultiValuedMap with inverted mappings.
-     * The new multimap will have a value-to-key mapping
-     * for each key-to-value mapping in the original.
+     * Always throws {@link UnsupportedOperationException}.
      *
-     * @return a new MultiValuedMap with inverted mappings
+     * @return Always throws {@link UnsupportedOperationException}.
+     * @throws UnsupportedOperationException Always thrown.
      * @since 4.6.0
      */
     default MultiValuedMap<V, K> inverted() {

Reply via email to