Skip to content

Commit 85cf900

Browse files
committed
Whitespace fixes, thanks to Shipilev
1 parent 3c0395b commit 85cf900

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/hotspot/share/runtime/vmThread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

src/hotspot/share/runtime/vmThread.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)