You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2016/09/11 13:22:28 UTC

[3/4] [lang] Correct indent of method declaration

Correct indent of method declaration


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/ff8fd957
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/ff8fd957
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/ff8fd957

Branch: refs/heads/master
Commit: ff8fd9578ee8f66e6f80cd7b9f204767845b7339
Parents: cf6b6d8
Author: Benedikt Ritter <br...@apache.org>
Authored: Sun Sep 11 15:14:24 2016 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Sun Sep 11 15:14:24 2016 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/lang3/ArrayUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/ff8fd957/src/main/java/org/apache/commons/lang3/ArrayUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/lang3/ArrayUtils.java b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
index 5cb32bd..db6ce7b 100644
--- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java
+++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
@@ -2402,7 +2402,7 @@ public class ArrayUtils {
      * of the sub-arrays to swap falls outside of the given array, then the
      * swap is stopped at the end of the array and as many as possible elements
      * are swapped.</p>
-     * 
+     *
      * <p>Examples:
      *     <ul>
      *         <li>ArrayUtils.swap(["1", "2", "3", "4"], 0, 2, 1) -&gt; ["3", "2", "1", "4"]</li>
@@ -2419,7 +2419,7 @@ public class ArrayUtils {
      * @param len the number of elements to swap starting with the given indices
      * @since 3.5
      */
-   public static void swap(final Object[] array,  int offset1, int offset2, int len) {
+    public static void swap(final Object[] array,  int offset1, int offset2, int len) {
         if (array == null || array.length == 0 || offset1 >= array.length || offset2 >= array.length) {
             return;
         }