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 40cb020  Sort members.
40cb020 is described below

commit 40cb020e8da5564fb71aceda3cc3ed345bfa341f
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Jun 12 16:20:28 2020 -0400

    Sort members.
---
 src/main/java/org/apache/commons/lang3/ArrayUtils.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/ArrayUtils.java 
b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
index d8d7ff5..c620c79 100644
--- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java
+++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
@@ -101,13 +101,6 @@ public class ArrayUtils {
     public static final Field[] EMPTY_FIELD_ARRAY = new Field[0];
 
     /**
-     * An empty immutable {@code Method} array.
-     *
-     * @since 3.10
-     */
-    public static final Method[] EMPTY_METHOD_ARRAY = new Method[0];
-
-    /**
      * An empty immutable {@code float} array.
      */
     public static final float[] EMPTY_FLOAT_ARRAY = new float[0];
@@ -138,6 +131,13 @@ public class ArrayUtils {
     public static final Long[] EMPTY_LONG_OBJECT_ARRAY = new Long[0];
 
     /**
+     * An empty immutable {@code Method} array.
+     *
+     * @since 3.10
+     */
+    public static final Method[] EMPTY_METHOD_ARRAY = new Method[0];
+
+    /**
      * An empty immutable {@code Object} array.
      */
     public static final Object[] EMPTY_OBJECT_ARRAY = new Object[0];

Reply via email to