mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-29 07:12:32 +00:00
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) {
|
public static byte[] encode(CharSequence string) {
|
||||||
try {
|
try {
|
||||||
ByteBuffer bytes = CHARSET.newEncoder().encode(CharBuffer.wrap(string));
|
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) {
|
} catch (CharacterCodingException e) {
|
||||||
throw new IllegalArgumentException("Encoding failed", e);
|
throw new IllegalArgumentException("Encoding failed", e);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user