[FIX] Исправлена проблема при завершении Ctrl + C

This commit is contained in:
Gravit 2019-05-15 17:31:53 +07:00
parent 96d07a4b25
commit 89477e52c6
No known key found for this signature in database
GPG key ID: 061981E1E85D3216

View file

@ -78,7 +78,7 @@ public String readLine() throws IOException {
return reader.readLine();
} catch(UserInterruptException e)
{
throw new IOException(e);
return null;
}
}
}