This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
commit e7bf2055567cd4506e26736719af357d243a76b6 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jun 12 11:21:15 2025 -0400 Javadoc: Internal method doesn't need @since tag --- src/main/java/org/apache/commons/lang3/ArrayUtils.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/org/apache/commons/lang3/ArrayUtils.java b/src/main/java/org/apache/commons/lang3/ArrayUtils.java index c90f32ae0..ae3ab4a60 100644 --- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java +++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java @@ -5306,7 +5306,6 @@ public static long[] removeAll(final long[] array, final int... indices) { * @param array the input array, will not be modified, and may be {@code null}. * @param indices to remove. * @return new array of same type minus elements specified by the set bits in {@code indices}. - * @since 3.2 */ // package protected for access by unit tests static Object removeAll(final Object array, final BitSet indices) {