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
The following commit(s) were added to refs/heads/master by this push: new d268741 "@exception" -> "@throws" d268741 is described below commit d2687419c6973572d1621afc1b8546f5262769c3 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Sep 6 14:25:20 2021 -0400 "@exception" -> "@throws" --- src/main/java/org/apache/commons/lang3/ArrayUtils.java | 2 +- 1 file changed, 1 insertion(+), 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 52cf143..a571636 100644 --- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java +++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java @@ -4285,7 +4285,7 @@ public class ArrayUtils { * @param componentType The array class. * @param length the array length * @return The new array. - * @exception NullPointerException if the specified {@code componentType} parameter is null. + * @throws NullPointerException if the specified {@code componentType} parameter is null. * @since 3.13.0 */ @SuppressWarnings("unchecked") // OK, because array and values are of type T