SPACES NOT TABS (like in Silicon Valley).

This commit is contained in:
David Solin
2016-09-02 09:16:26 -05:00
parent 1b5b2b25b7
commit 8ffd852e67

View File

@@ -195,12 +195,12 @@ public abstract class AbstractChannel
@Override
public boolean isEOF() {
return eof;
return eof;
}
@Override
public LoggerFactory getLoggerFactory() {
return loggerFactory;
return loggerFactory;
}
private void gotClose()
@@ -401,7 +401,7 @@ public abstract class AbstractChannel
/** Called when EOF has been received. Subclasses can override but must call super. */
protected void eofInputStreams() {
in.eof();
eof = true;
eof = true;
}
@Override