8003869: Eliminate java.lang.invoke.InnerClassLambdaMetafactory dependency on java.util.logging

Reviewed-by: alanb, dholmes
This commit is contained in:
Mandy Chung 2012-11-28 10:50:54 -08:00
parent 6c4d705c91
commit 67a70e3b75

View File

@ -30,8 +30,7 @@ import java.io.IOException;
import java.lang.reflect.Method;
import java.security.ProtectionDomain;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.logging.Level;
import java.util.logging.Logger;
import sun.util.logging.PlatformLogger;
import jdk.internal.org.objectweb.asm.*;
import static jdk.internal.org.objectweb.asm.Opcodes.*;
import sun.misc.Unsafe;
@ -192,7 +191,7 @@ import sun.misc.Unsafe;
try (FileOutputStream fos = new FileOutputStream(lambdaClassName.replace('/', '.') + ".class")) {
fos.write(classBytes);
} catch (IOException ex) {
Logger.getLogger(InnerClassLambdaMetafactory.class.getName()).log(Level.SEVERE, null, ex);
PlatformLogger.getLogger(InnerClassLambdaMetafactory.class.getName()).severe(ex.getMessage(), ex);
}
}