mirror of
https://github.com/revanced/jadb.git
synced 2025-06-13 05:37:44 +02:00
Refactor: Renaming class.
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user