mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 17:11:39 +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
|
@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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue