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 f5db77e1bc27ec55f13f95da6edcd583b6faed1a Author: Gary Gregory <[email protected]> AuthorDate: Thu Jul 9 19:17:51 2026 -0400 Add missing Javadoc and tags. --- .../java/org/apache/commons/collections4/list/SetUniqueList.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/list/SetUniqueList.java b/src/main/java/org/apache/commons/collections4/list/SetUniqueList.java index d7edd87dd..43b9081b2 100644 --- a/src/main/java/org/apache/commons/collections4/list/SetUniqueList.java +++ b/src/main/java/org/apache/commons/collections4/list/SetUniqueList.java @@ -127,6 +127,12 @@ public class SetUniqueList<E> extends AbstractSerializableListDecorator<E> { last = null; } + /** + * Always throws {@link UnsupportedOperationException}. + * + * @param object Ignored. + * @throws UnsupportedOperationException Always thrown. + */ @Override public void set(final E object) { throw new UnsupportedOperationException("ListIterator does not support set");
