This commit is contained in:
Alejandro Murillo 2016-03-24 15:53:22 -07:00
commit 3b0a2b4093

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -146,7 +146,7 @@ class StringCoding {
} }
@HotSpotIntrinsicCandidate @HotSpotIntrinsicCandidate
private static boolean hasNegatives(byte[] ba, int off, int len) { public static boolean hasNegatives(byte[] ba, int off, int len) {
for (int i = off; i < off + len; i++) { for (int i = off; i < off + len; i++) {
if (ba[i] < 0) { if (ba[i] < 0) {
return true; return true;