src/share/classes/sun/font/CompositeGlyphMapper.java

Print this page
rev 1379 : [mq]: fontmanager.patch

@@ -209,14 +209,14 @@
             int gc = glyphs[i] = getCachedGlyphCode(code);
             if (gc == UNINITIALIZED_GLYPH) {
                 glyphs[i] = convertToGlyph(code);
             }
 
-            if (code < FontManager.MIN_LAYOUT_CHARCODE) {
+            if (code < FontUtilities.MIN_LAYOUT_CHARCODE) {
                 continue;
             }
-            else if (FontManager.isComplexCharCode(code)) {
+            else if (FontUtilities.isComplexCharCode(code)) {
                 return true;
             }
             else if (code >= 0x10000) {
                 i += 1; // Empty glyph slot after surrogate
                 continue;