mirror of
https://github.com/revanced/jadb.git
synced 2025-02-11 09:36:48 +01:00
Refactor: Renaming class.
This commit is contained in:
parent
700bd71afe
commit
728817f95e
@ -7,10 +7,10 @@ import java.io.OutputStreamWriter;
|
|||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.Charset;
|
||||||
|
|
||||||
public class AdbResponder implements Runnable {
|
public class AdbProtocolHandler implements Runnable {
|
||||||
private Socket socket;
|
private Socket socket;
|
||||||
|
|
||||||
public AdbResponder(Socket socket) {
|
public AdbProtocolHandler(Socket socket) {
|
||||||
this.socket = socket;
|
this.socket = socket;
|
||||||
}
|
}
|
||||||
|
|
@ -20,7 +20,7 @@ public class AdbServer extends SocketServer {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Runnable createResponder(Socket socket) {
|
protected Runnable createResponder(Socket socket) {
|
||||||
return new AdbResponder(socket);
|
return new AdbProtocolHandler(socket);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args)
|
public static void main(String[] args)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user