mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 09:01:08 +03:00
[FIX] Фикс завершения LaunchServer по Ctrl + C
This commit is contained in:
parent
f0d5afb677
commit
dbffcd0030
1 changed files with 6 additions and 1 deletions
|
@ -74,6 +74,11 @@ public void clear() throws IOException {
|
|||
|
||||
@Override
|
||||
public String readLine() throws IOException {
|
||||
try {
|
||||
return reader.readLine();
|
||||
} catch(UserInterruptException e)
|
||||
{
|
||||
throw new IOException(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue