File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/hotspot/share/runtime Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -379,7 +379,7 @@ void VMThread::inner_execute(VM_Operation* op) {
379379 assert (Thread::current ()->is_VM_thread (), " Must be the VM thread" );
380380
381381 VM_Operation* prev_vm_operation = NULL ;
382- if (_cur_vm_operation!= NULL ) {
382+ if (_cur_vm_operation != NULL ) {
383383 // Check the VM operation allows nested VM operation.
384384 // This normally not the case, e.g., the compiler
385385 // does not allow nested scavenges or compiles.
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ class VMThread: public NamedThread {
106106
107107 static VM_Operation::VMOp_Type vm_op_type () {
108108 VM_Operation* op = vm_operation ();
109- assert (op != NULL , " sanity" );
109+ assert (op != NULL , " sanity" );
110110 return op->type ();
111111 }
112112
You can’t perform that action at this time.
0 commit comments