Fix NullPointerException when arguments are incorrects
This commit is contained in:
parent
c43b200888
commit
2855b634c9
@ -12,6 +12,7 @@ import battleship.view.Window;
|
|||||||
|
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
import java.util.NoSuchElementException;
|
import java.util.NoSuchElementException;
|
||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
@ -48,7 +49,10 @@ public class Main {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(players[0] != null && players[1] != null) {
|
||||||
game = new Game(players);
|
game = new Game(players);
|
||||||
|
} else
|
||||||
|
throw new IllegalArgumentException("Arguments incorrects: " + Arrays.toString(args));
|
||||||
if(args.length >= 3) {
|
if(args.length >= 3) {
|
||||||
// arguments > 3 ignorés
|
// arguments > 3 ignorés
|
||||||
if(args[2].equalsIgnoreCase("nogui"))
|
if(args[2].equalsIgnoreCase("nogui"))
|
||||||
|
Loading…
Reference in New Issue
Block a user