mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 00:51:01 +03:00
[FIX] Definal
This commit is contained in:
parent
d68e1f781e
commit
c714a1a5ed
1 changed files with 5 additions and 5 deletions
|
@ -41,7 +41,7 @@ public LaunchServerConfig setLaunchServer(LaunchServer server) {
|
|||
|
||||
public String binaryName;
|
||||
|
||||
public final boolean copyBinaries = true;
|
||||
public boolean copyBinaries = true;
|
||||
|
||||
public LauncherConfig.LauncherEnvironment env;
|
||||
|
||||
|
@ -241,10 +241,10 @@ public static class NettyConfig {
|
|||
public String downloadURL;
|
||||
public String launcherEXEURL;
|
||||
public String address;
|
||||
public final Map<String, LaunchServerConfig.NettyUpdatesBind> bindings = new HashMap<>();
|
||||
public Map<String, LaunchServerConfig.NettyUpdatesBind> bindings = new HashMap<>();
|
||||
public NettyPerformanceConfig performance;
|
||||
public NettyBindAddress[] binds;
|
||||
public final LogLevel logLevel = LogLevel.DEBUG;
|
||||
public LogLevel logLevel = LogLevel.DEBUG;
|
||||
}
|
||||
|
||||
public static class NettyPerformanceConfig {
|
||||
|
@ -254,8 +254,8 @@ public static class NettyPerformanceConfig {
|
|||
}
|
||||
|
||||
public static class NettyBindAddress {
|
||||
public final String address;
|
||||
public final int port;
|
||||
public String address;
|
||||
public int port;
|
||||
|
||||
public NettyBindAddress(String address, int port) {
|
||||
this.address = address;
|
||||
|
|
Loading…
Reference in a new issue