You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* A negative startIndex is treated as zero. A startIndex larger than the array length will return {@link CollectionUtils#INDEX_NOT_FOUND} ({@code -1}).
64
64
* </p>
65
65
*
66
-
* @param array the array to search for the object, may be {@code null}
67
-
* @param objectToFind the object to find, may be {@code null}
66
+
* @param array the array to search for the object, may be {@code null}.
67
+
* @param objectToFind the object to find, may be {@code null}.
68
68
* @param startIndex the index to start searching at
69
69
* @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}
70
70
* array input
@@ -100,8 +100,8 @@ static int indexOf(final Object[] array, final Object objectToFind, int startInd
100
100
* This method returns {@link CollectionUtils#INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
101
101
* </p>
102
102
*
103
-
* @param array the array to search for the object, may be {@code null}
104
-
* @param objectToFind the object to find, may be {@code null}
103
+
* @param array the array to search for the object, may be {@code null}.
104
+
* @param objectToFind the object to find, may be {@code null}.
105
105
* @return the index of the object within the array, {@link CollectionUtils#INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
0 commit comments