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 b34feb65a213cd15498b8d5097f04f6b1efb8487 Author: Gary Gregory <[email protected]> AuthorDate: Thu Jul 9 19:04:46 2026 -0400 Add missing Javadoc and tags. --- .../apache/commons/collections4/iterators/PermutationIterator.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/iterators/PermutationIterator.java b/src/main/java/org/apache/commons/collections4/iterators/PermutationIterator.java index 6aace6657..9aa4e4660 100644 --- a/src/main/java/org/apache/commons/collections4/iterators/PermutationIterator.java +++ b/src/main/java/org/apache/commons/collections4/iterators/PermutationIterator.java @@ -152,6 +152,11 @@ public class PermutationIterator<E> implements Iterator<List<E>> { return result; } + /** + * Always throws {@link UnsupportedOperationException}. + * + * @throws UnsupportedOperationException Always thrown. + */ @Override public void remove() { throw new UnsupportedOperationException("remove() is not supported");
