SEC-1764: Remove use of Java 6 method Arrays.copyOfRange.
This commit is contained in:
parent
571bfc4869
commit
89b7b2b935
|
@ -22,8 +22,10 @@ public final class Utf8 {
|
|||
public static byte[] encode(CharSequence string) {
|
||||
try {
|
||||
ByteBuffer bytes = CHARSET.newEncoder().encode(CharBuffer.wrap(string));
|
||||
byte[] bytesCopy = new byte[bytes.limit()];
|
||||
System.arraycopy(bytes.array(), 0, bytesCopy, 0, bytes.limit());
|
||||
|
||||
return Arrays.copyOfRange(bytes.array(), 0, bytes.limit());
|
||||
return bytesCopy;
|
||||
} catch (CharacterCodingException e) {
|
||||
throw new IllegalArgumentException("Encoding failed", e);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue