src/java.desktop/share/classes/sun/font/FontUtilities.java

Print this page

        

@@ -376,16 +376,12 @@
      * This returns a FontUIResource as that is the Font sub-class needed
      * by Swing.
      * 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);
      * }
      * return fuir;
      */