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 9d86650610f8aee99424cf1cfc7b48cd3bc71efb Author: Gary Gregory <[email protected]> AuthorDate: Thu Jul 9 19:17:29 2026 -0400 Add missing Javadoc and tags. --- .../iterators/UnmodifiableOrderedMapIterator.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/iterators/UnmodifiableOrderedMapIterator.java b/src/main/java/org/apache/commons/collections4/iterators/UnmodifiableOrderedMapIterator.java index 1d343a536..db4b9f43e 100644 --- a/src/main/java/org/apache/commons/collections4/iterators/UnmodifiableOrderedMapIterator.java +++ b/src/main/java/org/apache/commons/collections4/iterators/UnmodifiableOrderedMapIterator.java @@ -96,11 +96,22 @@ public final class UnmodifiableOrderedMapIterator<K, V> implements OrderedMapIte return iterator.previous(); } + /** + * Always throws {@link UnsupportedOperationException}. + * + * @throws UnsupportedOperationException Always thrown. + */ @Override public void remove() { throw new UnsupportedOperationException("remove() is not supported"); } + /** + * Always throws {@link UnsupportedOperationException}. + * + * @param value Ignored. + * @throws UnsupportedOperationException Always thrown. + */ @Override public V setValue(final V value) { throw new UnsupportedOperationException("setValue() is not supported");
