Actually fix multi names

This commit is contained in:
libraryaddict
2020-06-22 19:39:02 +12:00
parent 3ebf9cce65
commit 407975f41f
2 changed files with 11 additions and 2 deletions

View File

@@ -1788,6 +1788,10 @@ public class DisguiseUtilities {
}
public static String[] reverse(String[] array) {
if (array == null) {
return new String[0];
}
String[] newArray = new String[array.length];
for (int i = 1; i <= array.length; i++) {