9
0
mirror of https://github.com/Winds-Studio/Leaf.git synced 2026-01-04 15:41:40 +00:00

fix empty check

This commit is contained in:
hayanesuru
2025-07-17 02:30:48 +09:00
parent b079543135
commit 1bf5f251ce

View File

@@ -78,7 +78,7 @@ public final class FixedThreadExecutor {
task.run();
} else if (SHUTDOWN) {
break;
} else if (!channel.isEmpty()) {
} else if (channel.isEmpty()) {
synchronized (sync) {
try {
sync.wait();