[FIX] Остановка по Ctrl + C

This commit is contained in:
Gravit 2019-05-22 05:53:08 +07:00
parent aab9a27f73
commit 77e9fb3d31

View file

@ -75,6 +75,7 @@ public String readLine() throws IOException {
try {
return reader.readLine();
} catch (UserInterruptException e) {
System.exit(0);
return null;
}
}