mirror of
https://github.com/revanced/jadb.git
synced 2025-02-11 01:26:47 +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) {
|
while (true) {
|
||||||
Socket c = socket.accept();
|
Socket c = socket.accept();
|
||||||
Thread clientThread = new Thread(createResponder(c), "AdbClientWorker");
|
createResponder(c).run();
|
||||||
clientThread.setDaemon(true);
|
|
||||||
clientThread.start();
|
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
// Empty on purpose
|
// Empty on purpose
|
||||||
|
Loading…
x
Reference in New Issue
Block a user