progress
This commit is contained in:
parent
42a69be638
commit
4691e457e3
|
@ -24,11 +24,6 @@ public interface LinkConnector extends LinkDecoder {
|
||||||
public BinaryProtocol getBinaryProtocol() {
|
public BinaryProtocol getBinaryProtocol() {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String unpack(String packet) {
|
|
||||||
return LinkDecoder.TEXT_PROTOCOL_DECODER.unpack(packet);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
void connectAndReadConfiguration(ConnectionStateListener listener);
|
void connectAndReadConfiguration(ConnectionStateListener listener);
|
||||||
|
|
|
@ -136,11 +136,6 @@ public class TcpConnector implements LinkConnector {
|
||||||
public void restart() {
|
public void restart() {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String unpack(String packet) {
|
|
||||||
return packet;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void send(String command, boolean fireEvent) throws InterruptedException {
|
public void send(String command, boolean fireEvent) throws InterruptedException {
|
||||||
if (bp == null) {
|
if (bp == null) {
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
package com.rusefi.io;
|
package com.rusefi.io;
|
||||||
|
|
||||||
import com.rusefi.core.EngineState;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* (c) Andrey Belomutskiy
|
* (c) Andrey Belomutskiy
|
||||||
* 6/20/2015.
|
* 6/20/2015.
|
||||||
|
|
Loading…
Reference in New Issue