< prev index next >

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

Print this page

        

@@ -143,11 +143,11 @@
       * The pool array stores the fonts, rather than directly referencing
       * the channels, as the font needs to do the open/close work.
       */
      // MACOSX begin -- need to access these in subclass
      protected static final int CHANNELPOOLSIZE = 20;
-     protected FileFont fontFileCache[] = new FileFont[CHANNELPOOLSIZE];
+     protected FileFont[] fontFileCache = new FileFont[CHANNELPOOLSIZE];
      // MACOSX end
      private int lastPoolIndex = 0;
 
     /* Need to implement a simple linked list scheme for fast
      * traversal and lookup.
< prev index next >