mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
Изменен порядок значений на более привычный
This commit is contained in:
parent
291f6e4405
commit
84a6784d26
1 changed files with 14 additions and 10 deletions
|
@ -56,12 +56,24 @@ public final class LaunchServer implements Runnable, AutoCloseable {
|
|||
public static final class Config {
|
||||
public int port;
|
||||
|
||||
private String address;
|
||||
|
||||
private String bindAddress;
|
||||
|
||||
public String projectName;
|
||||
|
||||
public String[] mirrors;
|
||||
|
||||
public String binaryName;
|
||||
|
||||
public LauncherConfig.LauncherEnvironment env;
|
||||
|
||||
// Handlers & Providers
|
||||
|
||||
public AuthHandler authHandler;
|
||||
|
||||
public AuthProvider[] authProvider;
|
||||
|
||||
public AuthHandler authHandler;
|
||||
|
||||
public PermissionsHandler permissionsHandler;
|
||||
|
||||
public TextureProvider textureProvider;
|
||||
|
@ -87,7 +99,6 @@ public static final class Config {
|
|||
|
||||
public String authRejectString;
|
||||
|
||||
public String projectName;
|
||||
|
||||
public String whitelistRejectString;
|
||||
|
||||
|
@ -95,13 +106,6 @@ public static final class Config {
|
|||
public boolean isUsingWrapper;
|
||||
public boolean isDownloadJava;
|
||||
|
||||
public String[] mirrors;
|
||||
public String binaryName;
|
||||
@Expose
|
||||
private String address;
|
||||
@Expose
|
||||
private String bindAddress;
|
||||
public LauncherConfig.LauncherEnvironment env;
|
||||
public boolean isWarningMissArchJava;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue