--- old/src/share/classes/sun/font/Type1GlyphMapper.java 2009-08-07 10:51:57.000000000 +0200 +++ new/src/share/classes/sun/font/Type1GlyphMapper.java 2009-08-07 10:51:57.000000000 +0200 @@ -46,7 +46,7 @@ try { missingGlyph = scaler.getMissingGlyphCode(); } catch (FontScalerException fe) { - scaler = FontManager.getNullScaler(); + scaler = FontScaler.getNullScaler(); try { missingGlyph = scaler.getMissingGlyphCode(); } catch (FontScalerException e) { //should not happen @@ -59,7 +59,7 @@ try { return scaler.getNumGlyphs(); } catch (FontScalerException e) { - scaler = FontManager.getNullScaler(); + scaler = FontScaler.getNullScaler(); return getNumGlyphs(); } } @@ -72,7 +72,7 @@ try { return scaler.getGlyphCode(ch) != missingGlyph; } catch(FontScalerException e) { - scaler = FontManager.getNullScaler(); + scaler = FontScaler.getNullScaler(); return canDisplay(ch); } } @@ -81,7 +81,7 @@ try { return scaler.getGlyphCode(ch); } catch (FontScalerException e) { - scaler = FontManager.getNullScaler(); + scaler = FontScaler.getNullScaler(); return charToGlyph(ch); } } @@ -93,7 +93,7 @@ try { return scaler.getGlyphCode((char)ch); } catch (FontScalerException e) { - scaler = FontManager.getNullScaler(); + scaler = FontScaler.getNullScaler(); return charToGlyph(ch); } } @@ -160,10 +160,10 @@ glyphs[i] = charToGlyph(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) {