mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX] Фикс java.lang.IllegalArgumentException: jdk.internal.ref.PhantomCleanable<?> declares multiple JSON fields named next
This commit is contained in:
parent
bc87e65ec9
commit
9145243b8c
2 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ public AuthProviderPair getAuthProviderPair()
|
||||||
|
|
||||||
public HWIDHandler hwidHandler;
|
public HWIDHandler hwidHandler;
|
||||||
|
|
||||||
public HashMap<String, Component> components;
|
public Map<String, Component> components;
|
||||||
|
|
||||||
// Misc options
|
// Misc options
|
||||||
public int threadCount;
|
public int threadCount;
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class AuthLimiterComponent extends Component implements NeedGarbageCollection {
|
public class AuthLimiterComponent extends Component implements NeedGarbageCollection {
|
||||||
private LaunchServer server;
|
private transient LaunchServer server;
|
||||||
@Override
|
@Override
|
||||||
public void preInit(LaunchServer launchServer) {
|
public void preInit(LaunchServer launchServer) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue