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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user