--- old/src/java.desktop/share/classes/sun/font/FontUtilities.java 2015-02-19 16:13:09.141548474 -0800 +++ new/src/java.desktop/share/classes/sun/font/FontUtilities.java 2015-02-19 16:13:09.025548477 -0800 @@ -378,12 +378,8 @@ * Suggested usage is something like : * FontUIResource fuir; * Font desktopFont = getDesktopFont(..); - * // NOTE even if fontSupportsDefaultEncoding returns true because - * // you get Tahoma and are running in an English locale, you may - * // still want to just call getCompositeFontUIResource() anyway - * // as only then will you get fallback fonts - eg for CJK. * if (FontManager.fontSupportsDefaultEncoding(desktopFont)) { - * fuir = new FontUIResource(..); + * fuir = new FontUIResource(desktopFont); * } else { * fuir = FontManager.getCompositeFontUIResource(desktopFont); * }