3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 02:05:53 +00:00

Remove stray line causing a compile error on Java 5

This commit is contained in:
Miron Cuperman (devrandom) 2011-10-24 02:23:21 +00:00
parent 0cec27e5a7
commit b7065f3f32

View File

@ -288,7 +288,6 @@ public class Utils {
public static byte[] copyOf(byte[] in, int length) {
byte[] out = new byte[length];
System.arraycopy(in, 0, out, 0, Math.min(length, in.length));
Arrays.copyOf(in, 6);
return out;
}
}