Skip to content

Commit

Permalink
Update MainArray.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ichimax authored Mar 5, 2021
1 parent 7811707 commit d91ae92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MainArray.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
Resume r;
while (true) {
System.out.print("Введите одну из команд - (list | save uuid | delete uuid | get uuid | clear | exit): ");
System.out.print("Введите одну из команд - (list | size | save uuid | delete uuid | get uuid | clear | exit): ");
String[] params = reader.readLine().trim().toLowerCase().split(" ");
if (params.length < 1 || params.length > 2) {
System.out.println("Неверная команда.");
Expand Down Expand Up @@ -68,4 +68,4 @@ static void printAll() {
}
System.out.println("----------------------------");
}
}
}

0 comments on commit d91ae92

Please sign in to comment.