[FIX] Фикс завершения LaunchServer по Ctrl + C

This commit is contained in:
Gravit 2019-05-14 15:58:13 +07:00
parent f0d5afb677
commit dbffcd0030

View file

@ -74,6 +74,11 @@ public void clear() throws IOException {
@Override @Override
public String readLine() throws IOException { public String readLine() throws IOException {
return reader.readLine(); try {
return reader.readLine();
} catch(UserInterruptException e)
{
throw new IOException(e);
}
} }
} }