Merge
authoramurillo
Thu, 24 Mar 2016 15:53:22 -0700
changeset 36932 920f25b0e30e
parent 36677 a7dca903cb27 (current diff)
parent 36931 49fe5278354e (diff)
child 36937 31dee8c26864
child 37330 d08692e67782
Merge
--- a/jdk/src/java.base/share/classes/java/lang/StringCoding.java	Thu Mar 24 13:09:48 2016 -0700
+++ b/jdk/src/java.base/share/classes/java/lang/StringCoding.java	Thu Mar 24 15:53:22 2016 -0700
@@ -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.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -146,7 +146,7 @@
     }
 
     @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++) {
             if (ba[i] < 0) {
                 return true;