Minor fix solving a ConcurrentModificationException

This commit is contained in:
Carlos
2021-06-02 22:43:10 +02:00
parent 75a505c63f
commit d593cf379e
5 changed files with 6 additions and 5 deletions

View File

@ -52,7 +52,7 @@ public class WebConsole extends JavaPlugin {
try {
server.stop();
wsThread = null;
} catch (IOException | InterruptedException e) {
} catch (Exception e) {
e.printStackTrace();
}
}