Fixed condition signal

This commit is contained in:
Robinson 2023-11-22 10:03:13 +01:00
parent e5bc0823ee
commit 390e65d845
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ class WindowsEventDispatch implements Runnable {
lock.lock(); lock.lock();
try { try {
condition.notifyAll(); condition.signalAll();;
} finally { } finally {
lock.unlock(); lock.unlock();
} }