mirror of
https://github.com/revanced/jadb.git
synced 2024-11-19 10:39:23 +01:00
adbserver: no client threads
This commit is contained in:
parent
fd1a833e6d
commit
f738b9f86c
@ -40,9 +40,7 @@ public abstract class SocketServer implements Runnable {
|
||||
|
||||
while (true) {
|
||||
Socket c = socket.accept();
|
||||
Thread clientThread = new Thread(createResponder(c), "AdbClientWorker");
|
||||
clientThread.setDaemon(true);
|
||||
clientThread.start();
|
||||
createResponder(c).run();
|
||||
}
|
||||
} catch (IOException e) {
|
||||
// Empty on purpose
|
||||
|
Loading…
Reference in New Issue
Block a user