change in TextInput convert commands toUpperCase
This commit is contained in:
parent
93d1c7b397
commit
6a60150a19
|
@ -5,7 +5,7 @@ public class TextInput {
|
|||
private static final Scanner sc = new Scanner(System.in);
|
||||
|
||||
public static String[] checkForInput() {
|
||||
return sc.nextLine().split(" ");
|
||||
return sc.nextLine().toUpperCase().split(" ");
|
||||
}
|
||||
|
||||
public static String getTextInput() {
|
||||
|
|
Loading…
Reference in New Issue