--- a/jdk/src/share/classes/java/awt/AttributeValue.java Sun Jun 16 22:36:41 2013 -0700
+++ b/jdk/src/share/classes/java/awt/AttributeValue.java Mon Jun 17 14:09:25 2013 +0100
@@ -33,11 +33,11 @@
private final String[] names;
protected AttributeValue(int value, String[] names) {
- if (log.isLoggable(PlatformLogger.FINEST)) {
+ if (log.isLoggable(PlatformLogger.Level.FINEST)) {
log.finest("value = " + value + ", names = " + names);
}
- if (log.isLoggable(PlatformLogger.FINER)) {
+ if (log.isLoggable(PlatformLogger.Level.FINER)) {
if ((value < 0) || (names == null) || (value >= names.length)) {
log.finer("Assertion failed");
}