--- old/src/java.base/share/classes/java/util/spi/LocaleServiceProvider.java 2015-10-30 11:45:44.628813050 -0700 +++ new/src/java.base/share/classes/java/util/spi/LocaleServiceProvider.java 2015-10-30 11:45:44.342808431 -0700 @@ -123,25 +123,27 @@ * *

* For example, if the following is specified in the property: *

- * java.locale.providers=SPI,CLDR,JRE
+ * java.locale.providers=SPI,CLDR,COMPAT
  * 
* the locale sensitive services in the SPI providers are looked up first. If the * desired locale sensitive service is not available, then the runtime looks for CLDR, - * JRE in that order. + * COMPAT in that order. *

- * The default order for looking up the preferred locale providers is "CLDR,JRE", - * so specifying "CLDR,JRE" is identical to the default behavior. Applications which + * The default order for looking up the preferred locale providers is "CLDR,COMPAT", + * so specifying "CLDR,COMPAT" is identical to the default behavior. Applications which * require implementations of the locale sensitive services must explicitly specify * "SPI" in order for the Java runtime to load them from the classpath. *