You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/08/30 15:20:15 UTC

[commons-lang] branch master updated: Use standard Javadoc @since tag format

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 c3c2928bc Use standard Javadoc @since tag format
c3c2928bc is described below

commit c3c2928bc5bf372dd463599a734114f83410431c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Aug 30 11:20:05 2022 -0400

    Use standard Javadoc @since tag format
---
 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 eef29dc7b..25d576546 100644
--- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java
+++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
@@ -8905,7 +8905,7 @@ public class ArrayUtils {
      * @param  <T>   the array's element type
      * @param  items  the varargs array items, null allowed
      * @return the array, not null unless a null array is passed in
-     * @since  3.0
+     * @since 3.0
      */
     public static <T> T[] toArray(@SuppressWarnings("unchecked") final T... items) {
         return items;