From cd05ae8278c5df007ca7c5d14fb156016fa784f0 Mon Sep 17 00:00:00 2001 From: Anton Artemov Date: Tue, 30 Sep 2025 11:47:03 +0200 Subject: [PATCH] 8366659: Fixed whitespace. --- src/hotspot/share/runtime/objectMonitor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hotspot/share/runtime/objectMonitor.cpp b/src/hotspot/share/runtime/objectMonitor.cpp index 555802f18b4..04928e8bfe9 100644 --- a/src/hotspot/share/runtime/objectMonitor.cpp +++ b/src/hotspot/share/runtime/objectMonitor.cpp @@ -1872,7 +1872,7 @@ void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) { // although the raw address of the object may have changed. // (Don't cache naked oops over safepoints, of course). - + OrderAccess::fence(); @@ -1904,7 +1904,7 @@ void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) { guarantee(node.TState == ObjectWaiter::TS_RUN, "invariant"); current->set_current_pending_monitor(nullptr); enter(current, false); - } + } assert(has_owner(current), "invariant"); node.wait_reenter_end(this); }