mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-14 11:15:51 +00:00
Remove stray line causing a compile error on Java 5
This commit is contained in:
parent
0cec27e5a7
commit
b7065f3f32
@ -288,7 +288,6 @@ public class Utils {
|
|||||||
public static byte[] copyOf(byte[] in, int length) {
|
public static byte[] copyOf(byte[] in, int length) {
|
||||||
byte[] out = new byte[length];
|
byte[] out = new byte[length];
|
||||||
System.arraycopy(in, 0, out, 0, Math.min(length, in.length));
|
System.arraycopy(in, 0, out, 0, Math.min(length, in.length));
|
||||||
Arrays.copyOf(in, 6);
|
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user