mirror of
https://github.com/revanced/jadb.git
synced 2024-11-19 10:39:23 +01:00
Fix: Modifiers should be declared in the correct order (squid:ModifiersOrderCheck)
This commit is contained in:
parent
c40420a64a
commit
70c700a6a1
@ -41,9 +41,9 @@ class HostConnectToRemoteTcpDevice {
|
||||
void validate(String response) throws ConnectionToRemoteDeviceException;
|
||||
}
|
||||
|
||||
final static class ResponseValidatorImp implements ResponseValidator {
|
||||
private final static String SUCCESSFULLY_CONNECTED = "connected to";
|
||||
private final static String ALREADY_CONNECTED = "already connected to";
|
||||
static final class ResponseValidatorImp implements ResponseValidator {
|
||||
private static final String SUCCESSFULLY_CONNECTED = "connected to";
|
||||
private static final String ALREADY_CONNECTED = "already connected to";
|
||||
|
||||
|
||||
ResponseValidatorImp() {
|
||||
|
@ -41,10 +41,9 @@ public class HostDisconnectFromRemoteTcpDevice {
|
||||
void validate(String response) throws ConnectionToRemoteDeviceException;
|
||||
}
|
||||
|
||||
final static class ResponseValidatorImp implements ResponseValidator {
|
||||
private final static String SUCCESSFULLY_DISCONNECTED = "disconnected";
|
||||
private final static String ALREADY_DISCONNECTED = "error: no such device";
|
||||
|
||||
static final class ResponseValidatorImp implements ResponseValidator {
|
||||
private static final String SUCCESSFULLY_DISCONNECTED = "disconnected";
|
||||
private static final String ALREADY_DISCONNECTED = "error: no such device";
|
||||
|
||||
ResponseValidatorImp() {
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user