mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[FIX] А ещё идея в некоторых местах исключения в интерфейсах поела...
This commit is contained in:
parent
a681f43312
commit
5e294d1517
1 changed files with 2 additions and 2 deletions
|
@ -586,7 +586,7 @@ private ClientLauncher() {
|
|||
public interface ParamsAPI {
|
||||
ParamContainer read() throws Exception;
|
||||
|
||||
void write(ParamContainer p);
|
||||
void write(ParamContainer p) throws Exception;
|
||||
}
|
||||
|
||||
public static ParamsAPI container = new ParamsAPI() {
|
||||
|
@ -603,7 +603,7 @@ public ParamContainer read() throws Exception {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void write(ParamContainer p) {
|
||||
public void write(ParamContainer p) throws Exception {
|
||||
setWriteParamsThread(CommonHelper.newThread("Client params writter", true, () ->
|
||||
{
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue