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 fdd801e1a2dde86a617f6d018c7c3bda81a35e2a Author: Gary Gregory <[email protected]> AuthorDate: Thu Jul 9 19:05:41 2026 -0400 Add missing Javadoc and tags. --- .../apache/commons/collections4/iterators/UnmodifiableIterator.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/iterators/UnmodifiableIterator.java b/src/main/java/org/apache/commons/collections4/iterators/UnmodifiableIterator.java index cef65686b..4f59af9f4 100644 --- a/src/main/java/org/apache/commons/collections4/iterators/UnmodifiableIterator.java +++ b/src/main/java/org/apache/commons/collections4/iterators/UnmodifiableIterator.java @@ -82,6 +82,11 @@ public final class UnmodifiableIterator<E, T extends Iterator<? extends E>> impl return iterator.next(); } + /** + * Always throws {@link UnsupportedOperationException}. + * + * @throws UnsupportedOperationException Always thrown. + */ // TODO This method can be removed in 5.0 since it's implemented as a default method in Iterator. @Override public void remove() {
