From f672d15574fdb4e480dd1ce68bda2489407c70a8 Mon Sep 17 00:00:00 2001 From: Anton Artemov Date: Tue, 20 Jan 2026 10:53:01 +0100 Subject: [PATCH] 8366659: Fixed whitespace. --- src/hotspot/share/runtime/objectMonitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotspot/share/runtime/objectMonitor.cpp b/src/hotspot/share/runtime/objectMonitor.cpp index f6c6c3ebb60..ec57e4f987c 100644 --- a/src/hotspot/share/runtime/objectMonitor.cpp +++ b/src/hotspot/share/runtime/objectMonitor.cpp @@ -2047,7 +2047,7 @@ bool ObjectMonitor::notify_internal(JavaThread* current) { old_state == java_lang_VirtualThread::TIMED_WAIT) { java_lang_VirtualThread::cmpxchg_state(vthread, old_state, java_lang_VirtualThread::BLOCKED); } - // If we will add the vthread to the entry list below then we need to + // If we will add the vthread to the entry list below then we need to // increment the counter *before* doing so. // Adding to _entry_list uses Atomic::cmpxchg() which already provides // a fence that prevents reordering of the stores.