mirror of
https://github.com/revanced/jadb.git
synced 2025-02-05 23:16:47 +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.nio.charset.Charset;
|
||||
|
||||
public class AdbResponder implements Runnable {
|
||||
public class AdbProtocolHandler implements Runnable {
|
||||
private Socket socket;
|
||||
|
||||
public AdbResponder(Socket socket) {
|
||||
public AdbProtocolHandler(Socket socket) {
|
||||
this.socket = socket;
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ public class AdbServer extends SocketServer {
|
||||
|
||||
@Override
|
||||
protected Runnable createResponder(Socket socket) {
|
||||
return new AdbResponder(socket);
|
||||
return new AdbProtocolHandler(socket);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
|
Loading…
x
Reference in New Issue
Block a user