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 0dcf60c39941482f15efb23aceb1f8c23e7bd635 Author: Gary Gregory <[email protected]> AuthorDate: Thu Jul 9 19:30:01 2026 -0400 Add missing Javadoc and tags. --- .../commons/collections4/multimap/AbstractMultiValuedMap.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMap.java b/src/main/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMap.java index fe7b3e770..f6e707c7e 100644 --- a/src/main/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMap.java +++ b/src/main/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMap.java @@ -285,6 +285,12 @@ public abstract class AbstractMultiValuedMap<K, V> implements MultiValuedMap<K, super(key, value); } + /** + * Always throws {@link UnsupportedOperationException}. + * + * @param value Ignored. + * @throws UnsupportedOperationException Always thrown. + */ @Override public V setValue(final V value) { throw new UnsupportedOperationException();
