proxy progress

This commit is contained in:
rusefi 2020-07-08 21:55:54 -04:00
parent 4ecab123bf
commit 70752cc8cd
1 changed files with 0 additions and 12 deletions

View File

@ -35,18 +35,6 @@ public class TcpIoStream implements IoStream {
this.input = input;
}
private TcpIoStream(Logger logger, InputStream input, OutputStream output) {
this.logger = logger;
if (input == null)
throw new NullPointerException("input");
if (output == null)
throw new NullPointerException("output");
this.output = output;
this.input = input;
IncomingDataBuffer dataBuffer = IncomingDataBuffer.createDataBuffer(this, logger);
setDataBuffer(dataBuffer);
}
@Override
public void setDataBuffer(IncomingDataBuffer dataBuffer) {
this.dataBuffer = dataBuffer;