]> granicus.if.org Git - icu/commitdiff
ICU-11918 LocaleMatcher API change reverted back to public but marked @internal as...
authorScott Russell <DTownSMR@gmail.com>
Wed, 23 Sep 2015 17:21:42 +0000 (17:21 +0000)
committerScott Russell <DTownSMR@gmail.com>
Wed, 23 Sep 2015 17:21:42 +0000 (17:21 +0000)
X-SVN-Rev: 38006

icu4j/main/classes/core/src/com/ibm/icu/util/LocaleMatcher.java

index e17938cd9268ed67d5449d26659b3311829bb2c1..b19223810a8d573761c7c4a149a64a410006e81e 100644 (file)
@@ -49,7 +49,10 @@ import com.ibm.icu.impl.Utility;
  */
 public class LocaleMatcher {
 
-    private static final boolean DEBUG = false;
+    /**
+     * @internal
+     */
+    public static final boolean DEBUG = false;
 
     private static final ULocale UNKNOWN_LOCALE = new ULocale("und");
 
@@ -284,7 +287,10 @@ public class LocaleMatcher {
         return bestTableMatch;
     }
     
-    private static class OutputDouble { // TODO, move to where OutputInt is
+    /**
+     * @internal
+     */
+    public static class OutputDouble { // TODO, move to where OutputInt is
         double value;
     }