Fix if statement

Missing ')'
This commit is contained in:
ng1905 2017-11-06 07:19:11 +01:00 committed by GitHub
parent 216e910411
commit 0132f25178
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -261,7 +261,7 @@ public class DefaultBotSession implements BotSession {
}
}
} catch (SocketException e) {
if (!e.getMessage().equals("Socket Closed") {
if (!e.getMessage().equals("Socket Closed")) {
BotLogger.severe(LOGTAG, e);
}
} catch (SocketTimeoutException e) {