Fix: Nested blocks of code should not be left empty (squid:S00108)

This commit is contained in:
Jano Svitok 2018-07-30 12:13:21 +02:00
parent 188aec84d6
commit 23b4dd6b4d

View File

@ -45,6 +45,7 @@ public abstract class SocketServer implements Runnable {
clientThread.start(); clientThread.start();
} }
} catch (IOException e) { } catch (IOException e) {
// Empty on purpose
} }
} }