Fix server checkstyle errors

Fix errors reported by:

    gradle -p server check
This commit is contained in:
Romain Vimont 2019-03-27 21:47:54 +01:00
parent e2ef39fae5
commit f11b0ec204
5 changed files with 4 additions and 7 deletions

View file

@ -4,7 +4,6 @@ import android.graphics.Rect;
import java.io.File;
import java.io.IOException;
import java.util.Arrays;
public final class Server {
@ -49,8 +48,9 @@ public final class Server {
@SuppressWarnings("checkstyle:MagicNumber")
private static Options createOptions(String... args) {
if (args.length != 5)
if (args.length != 5) {
throw new IllegalArgumentException("Expecting 5 parameters");
}
Options options = new Options();
@ -73,6 +73,7 @@ public final class Server {
return options;
}
@SuppressWarnings("checkstyle:MagicNumber")
private static Rect parseCrop(String crop) {
if ("-".equals(crop)) {
return null;