Added check for duplicate addresses

This commit is contained in:
M66B
2020-10-01 09:45:59 +02:00
parent 9f1d41ea42
commit 19d5da3280
5 changed files with 31 additions and 1 deletions

View File

@@ -1564,6 +1564,17 @@ 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;