Fixed crash

This commit is contained in:
M66B
2020-10-01 21:44:41 +02:00
parent 4e5a16c23e
commit 848dc980d0
3 changed files with 14 additions and 17 deletions

View File

@@ -1564,17 +1564,6 @@ public class Helper {
return result;
}
@SuppressWarnings("unchecked")
public static <T> T[] concat(T[] a, T[] b) {
if (a == null)
a = (T[]) new Object[0];
if (b == null)
b = (T[]) new Object[0];
T[] both = Arrays.copyOf(a, a.length + b.length);
System.arraycopy(b, 0, both, a.length, b.length);
return both;
}
static boolean equal(String[] a1, String[] a2) {
if (a1 == null && a2 == null)
return true;