Correct indent of method declaration

This commit is contained in:
Benedikt Ritter 2016-09-11 15:14:24 +02:00
parent cf6b6d8eb1
commit ff8fd9578e
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}