This commit is contained in:
坏黑
2018-05-12 16:53:02 +08:00
parent 4cc3ce4fc8
commit 3de2fe5f2a
26 changed files with 425 additions and 215 deletions

View File

@@ -31,7 +31,7 @@ public class ArrayUtils {
public static String[] removeFirst(String[] args) {
if (args.length <= 1) {
return null;
return new String[0];
}
List<String> list = asList(args);
list.remove(0);