Fix indentation

This commit is contained in:
Olli Helenius
2017-07-06 22:44:31 +03:00
parent 9e8bef24c5
commit 15e6924fc4

View File

@@ -259,9 +259,9 @@ public abstract class SocketClient {
void onConnect() throws IOException {
if (socket != null) {
socket.setSoTimeout(timeout);
input = socket.getInputStream();
output = socket.getOutputStream();
socket.setSoTimeout(timeout);
input = socket.getInputStream();
output = socket.getOutputStream();
}
}