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-collections.git
The following commit(s) were added to refs/heads/master by this push: new e859703b7 Simplify wording e859703b7 is described below commit e859703b742661d5e971c9ac00c56ef44fd7e0af Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Mar 5 07:09:10 2025 -0500 Simplify wording --- src/main/java/org/apache/commons/collections4/ArrayUtils.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/ArrayUtils.java b/src/main/java/org/apache/commons/collections4/ArrayUtils.java index 9bfe1e800..1d3c16fed 100644 --- a/src/main/java/org/apache/commons/collections4/ArrayUtils.java +++ b/src/main/java/org/apache/commons/collections4/ArrayUtils.java @@ -44,7 +44,7 @@ final class ArrayUtils { * The method returns {@code false} if a {@code null} array is passed in. * </p> * - * @param array the array to search through + * @param array the array to search * @param objectToFind the object to find * @return {@code true} if the array contains the object */ @@ -63,7 +63,7 @@ final class ArrayUtils { * A negative startIndex is treated as zero. A startIndex larger than the array length will return {@link CollectionUtils#INDEX_NOT_FOUND} ({@code -1}). * </p> * - * @param array the array to search through for the object, may be {@code null} + * @param array the array to search for the object, may be {@code null} * @param objectToFind the object to find, may be {@code null} * @param startIndex the index to start searching at * @return the index of the object within the array starting at the index, {@link CollectionUtils#INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} @@ -100,7 +100,7 @@ final class ArrayUtils { * This method returns {@link CollectionUtils#INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array. * </p> * - * @param array the array to search through for the object, may be {@code null} + * @param array the array to search for the object, may be {@code null} * @param objectToFind the object to find, may be {@code null} * @return the index of the object within the array, {@link CollectionUtils#INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input */