package info.FrostFS.sdk; public class ArrayHelper { public static byte[] concat(byte[] startArray, byte[] endArray) { byte[] result = new byte[startArray.length + endArray.length]; System.arraycopy(startArray, 0, result, 0, startArray.length); System.arraycopy(endArray, 0, result, startArray.length, endArray.length); return result; } }