# HG changeset patch # User Bernhard Urban # Date 1413902594 -7200 # Node ID 70077134cabc445a31cfa8cb15a82b4b169de93c # Parent 0e1c92b8b267d9238d686fa398b7f523e6f799d7 graalCompiler: remove unnecessary HandleMark. diff -r 0e1c92b8b267 -r 70077134cabc src/share/vm/graal/graalCompiler.cpp --- a/src/share/vm/graal/graalCompiler.cpp Tue Oct 21 16:24:53 2014 +0200 +++ b/src/share/vm/graal/graalCompiler.cpp Tue Oct 21 16:43:14 2014 +0200 @@ -55,14 +55,9 @@ } else { set_state(initialized); } - - { - HandleMark hm; - - // Graal is considered as application code so we need to - // stop the VM deferring compilation now. - CompilationPolicy::completed_vm_startup(); - } + // Graal is considered as application code so we need to + // stop the VM deferring compilation now. + CompilationPolicy::completed_vm_startup(); #endif // COMPILERGRAAL }