Fix: "notifyAll" should be used (squid:S2446)

This commit is contained in:
Jano Svitok 2018-07-30 13:20:23 +02:00
parent 42f0de589b
commit 1eeaee1da8

View File

@ -52,7 +52,7 @@ public abstract class SocketServer implements Runnable {
private void serverReady() {
synchronized (lockObject) {
isStarted = true;
lockObject.notify();
lockObject.notifyAll();
}
}