1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 14:22:05 +01:00

Socks5Proxy: Log if server thread termination was interrupted

This commit is contained in:
Florian Schmaus 2019-05-18 13:24:30 +02:00
parent 11ae6d6960
commit 48010f3b82

View file

@ -238,7 +238,7 @@ public final class Socks5Proxy {
this.serverThread.join();
}
catch (InterruptedException e) {
// do nothing
LOGGER.log(Level.WARNING, "SOCKS5 server thread termination was interrupted", e);
}
}
this.serverThread = null;