mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-08-06 08:22:05 +00:00
some netbeans inspection fixes
This commit is contained in:
@@ -161,11 +161,9 @@ public class Debugger {
|
||||
ss.setReuseAddress(true);
|
||||
while (true) {
|
||||
Socket s = ss.accept();
|
||||
if (s != null) {
|
||||
DebugHandler h = new DebugHandler(port, s);
|
||||
handlers.put(h.id, h);
|
||||
h.start();
|
||||
}
|
||||
DebugHandler h = new DebugHandler(port, s);
|
||||
handlers.put(h.id, h);
|
||||
h.start();
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
//ignore
|
||||
|
||||
Reference in New Issue
Block a user