Remove extra whitespace in AbstractDebugger

This commit is contained in:
Florian Schmaus 2014-12-30 12:07:20 +01:00
parent b08dbc1dbc
commit ca687087d5
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public abstract class AbstractDebugger implements SmackDebugger {
this.reader = new ObservableReader(reader);
readerListener = new ReaderListener() {
public void read(String str) {
log("RECV (" + connection.getConnectionCounter() + "): " + str);
log("RECV (" + connection.getConnectionCounter() + "): " + str);
}
};
this.reader.addReaderListener(readerListener);