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 b9775182f9c3472174f8a5f64c51c31c5315b18b Author: Gary Gregory <[email protected]> AuthorDate: Thu Jul 9 19:17:34 2026 -0400 Add missing Javadoc and tags. --- .../java/org/apache/commons/collections4/list/FixedSizeList.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/list/FixedSizeList.java b/src/main/java/org/apache/commons/collections4/list/FixedSizeList.java index ddd7c5b73..845a2fd41 100644 --- a/src/main/java/org/apache/commons/collections4/list/FixedSizeList.java +++ b/src/main/java/org/apache/commons/collections4/list/FixedSizeList.java @@ -82,6 +82,11 @@ public class FixedSizeList<E> return new FixedSizeList<>(list); } + /** + * Always throws {@link UnsupportedOperationException}. + * + * @throws UnsupportedOperationException Always thrown. + */ private static UnsupportedOperationException unsupportedOperationException() { return new UnsupportedOperationException("List is fixed size"); }
