Reformat Java code

Reformated by Android studio to match the 150 characters column defined
in checkstyle.
This commit is contained in:
Romain Vimont 2019-11-25 17:33:06 +01:00
parent 2b845680b0
commit 6abb8fd0cd
8 changed files with 22 additions and 42 deletions

View file

@ -73,8 +73,8 @@ public final class Server {
String clientVersion = args[0];
if (!clientVersion.equals(BuildConfig.VERSION_NAME)) {
throw new IllegalArgumentException("The server version (" + clientVersion + ") does not match the client "
+ "(" + BuildConfig.VERSION_NAME + ")");
throw new IllegalArgumentException(
"The server version (" + clientVersion + ") does not match the client " + "(" + BuildConfig.VERSION_NAME + ")");
}
if (args.length != 8) {