jdk/src/share/classes/sun/font/SunFontManager.java
changeset 3938 ef327bd847c0
parent 3929 de1a48b7aa41
child 4954 1f09a5b49505
--- a/jdk/src/share/classes/sun/font/SunFontManager.java	Tue Sep 29 09:02:00 2009 -0700
+++ b/jdk/src/share/classes/sun/font/SunFontManager.java	Tue Sep 29 16:03:03 2009 -0700
@@ -47,14 +47,13 @@
 import java.util.TreeMap;
 import java.util.Vector;
 import java.util.concurrent.ConcurrentHashMap;
-import java.util.logging.Level;
-import java.util.logging.Logger;
 
 import javax.swing.plaf.FontUIResource;
 import sun.awt.AppContext;
 import sun.awt.FontConfiguration;
 import sun.awt.SunToolkit;
 import sun.java2d.FontSupport;
+import sun.util.logging.PlatformLogger;
 
 /**
  * The base implementation of the {@link FontManager} interface. It implements
@@ -473,7 +472,7 @@
                         }
 
                         if (FontUtilities.debugFonts()) {
-                            Logger logger = FontUtilities.getLogger();
+                            PlatformLogger logger = FontUtilities.getLogger();
                             logger.info("JRE font directory: " + jreFontDirName);
                             logger.info("Extra font path: " + extraFontPath);
                             logger.info("Debug font path: " + dbgFontPath);
@@ -1615,7 +1614,7 @@
     }
 
     private void logPlatformFontInfo() {
-        Logger logger = FontUtilities.getLogger();
+        PlatformLogger logger = FontUtilities.getLogger();
         for (int i=0; i< pathDirs.length;i++) {
             logger.info("fontdir="+pathDirs[i]);
         }
@@ -2997,7 +2996,7 @@
             registeredFontFiles.add(fullName);
 
             if (FontUtilities.debugFonts()
-                && FontUtilities.getLogger().isLoggable(Level.INFO)) {
+                && FontUtilities.getLogger().isLoggable(PlatformLogger.INFO)) {
                 String message = "Registering font " + fullName;
                 String[] natNames = getNativeNames(fullName, null);
                 if (natNames == null) {