mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +03:00
Merge remote-tracking branch 'origin/master' into patchy
This commit is contained in:
commit
48e57b3c45
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ public interface Listener {
|
||||||
void onDisconnect(Exception e);
|
void onDisconnect(Exception e);
|
||||||
|
|
||||||
|
|
||||||
boolean onHandshake(long session, Integer type);
|
boolean onHandshake(long session, int type);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final ThreadFactory THREAD_FACTORY = r -> CommonHelper.newThread("Network Thread", true, r);
|
private static final ThreadFactory THREAD_FACTORY = r -> CommonHelper.newThread("Network Thread", true, r);
|
||||||
|
@ -76,7 +76,7 @@ public void close() {
|
||||||
listener.onDisconnect(e);
|
listener.onDisconnect(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*package*/ boolean onHandshake(long session, Integer type) {
|
/*package*/ boolean onHandshake(long session, int type) {
|
||||||
return listener == null || listener.onHandshake(session, type);
|
return listener == null || listener.onHandshake(session, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue