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 bece60af19b57a842eef99db48d96066c6326c31 Author: Gary Gregory <[email protected]> AuthorDate: Thu Jul 9 19:00:57 2026 -0400 Add missing Javadoc and tags. --- .../commons/collections4/iterators/CartesianProductIterator.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/iterators/CartesianProductIterator.java b/src/main/java/org/apache/commons/collections4/iterators/CartesianProductIterator.java index 565dc2828..b3f2d105b 100644 --- a/src/main/java/org/apache/commons/collections4/iterators/CartesianProductIterator.java +++ b/src/main/java/org/apache/commons/collections4/iterators/CartesianProductIterator.java @@ -149,6 +149,11 @@ public class CartesianProductIterator<E> implements Iterator<List<E>> { throw new IllegalStateException("reached unreachable code"); } + /** + * Always throws {@link UnsupportedOperationException}. + * + * @throws UnsupportedOperationException Always thrown. + */ @Override public void remove() { throw new UnsupportedOperationException("remove");
