Skip to content

Commit 1d25499

Browse files
[LANG-1820][javadoc] Fix ObjectUtils.anyNull(Object) for empty arrays
1 parent ae89768 commit 1d25499

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/commons/lang3/ObjectUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ public static boolean anyNotNull(final Object... values) {
213213
* </pre>
214214
*
215215
* @param values the values to test, may be {@code null} or empty.
216-
* @return {@code true} if there is at least one {@code null} value in the array, {@code false} if all the values are non-null. If the array is {@code null}
217-
* or empty, {@code true} is also returned.
216+
* @return {@code true} if there is at least one {@code null} value in the array, {@code false} if all the values are non-null or the array is empty. If the array is {@code null},
217+
* {@code true} is also returned.
218218
* @since 3.11
219219
*/
220220
public static boolean anyNull(final Object... values) {

0 commit comments

Comments
 (0)