13
0

Increasing thread safety

Dieser Commit ist enthalten in:
Lixfel 2019-12-29 11:21:41 +01:00
Ursprung 70198d0962
Commit 1965a544cb

Datei anzeigen

@ -151,7 +151,9 @@ public class Subserver implements Runnable {
fatalError();
Thread.currentThread().interrupt();
} finally {
serverList.remove(this);
synchronized (serverList){
serverList.remove(this);
}
ProxyServer.getInstance().getServers().remove(serverName);
shutdownCallback.run();
}