This commit is contained in:
Looly 2021-03-28 20:12:37 +08:00
parent 9989247781
commit 0b2c873185

View File

@ -1365,7 +1365,8 @@ public class ArrayUtil extends PrimitiveArrayUtil {
* @return 变更后的原数组
* @since 3.0.9
*/
public static <T> T[] reverse(T[] array, final int startIndexInclusive, final int endIndexExclusive) {
public static <T> T[]
reverse(T[] array, final int startIndexInclusive, final int endIndexExclusive) {
if (isEmpty(array)) {
return array;
}