--- old/src/windows/classes/sun/awt/windows/WWindowPeer.java Fri Jun 14 15:16:46 2013 +++ new/src/windows/classes/sun/awt/windows/WWindowPeer.java Fri Jun 14 15:16:46 2013 @@ -460,7 +460,7 @@ public void updateGC() { int scrn = getScreenImOn(); - if (screenLog.isLoggable(PlatformLogger.FINER)) { + if (screenLog.isLoggable(PlatformLogger.Level.FINER)) { log.finer("Screen number: " + scrn); } @@ -485,7 +485,7 @@ // is now mostly on. winGraphicsConfig = (Win32GraphicsConfig)newDev .getDefaultConfiguration(); - if (screenLog.isLoggable(PlatformLogger.FINE)) { + if (screenLog.isLoggable(PlatformLogger.Level.FINE)) { if (winGraphicsConfig == null) { screenLog.fine("Assertion (winGraphicsConfig != null) failed"); } @@ -730,7 +730,7 @@ TranslucentWindowPainter currentPainter = painter; if (currentPainter != null) { currentPainter.updateWindow(repaint); - } else if (log.isLoggable(PlatformLogger.FINER)) { + } else if (log.isLoggable(PlatformLogger.Level.FINER)) { log.finer("Translucent window painter is null in updateWindow"); } } @@ -766,7 +766,7 @@ public void propertyChange(PropertyChangeEvent e) { boolean isDisposed = (Boolean)e.getNewValue(); if (isDisposed != true) { - if (log.isLoggable(PlatformLogger.FINE)) { + if (log.isLoggable(PlatformLogger.Level.FINE)) { log.fine(" Assertion (newValue != true) failed for AppContext.GUI_DISPOSED "); } }