mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-06 08:22:00 +03:00
[STYLE] Удалены лишние импорты + [ANY] Обновлены модули.
This commit is contained in:
parent
6db5d818b0
commit
8163266141
4 changed files with 4 additions and 4 deletions
|
@ -38,7 +38,6 @@
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.lang.ProcessBuilder.Redirect;
|
import java.lang.ProcessBuilder.Redirect;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.net.MalformedURLException;
|
|
||||||
import java.net.SocketAddress;
|
import java.net.SocketAddress;
|
||||||
import java.nio.file.*;
|
import java.nio.file.*;
|
||||||
import java.nio.file.attribute.BasicFileAttributes;
|
import java.nio.file.attribute.BasicFileAttributes;
|
||||||
|
|
|
@ -35,7 +35,8 @@ public void invoke(String... args) throws Exception {
|
||||||
CommonHelper.newThread("Netty Server", true, handler).start();
|
CommonHelper.newThread("Netty Server", true, handler).start();
|
||||||
}
|
}
|
||||||
if (args[0].equals("profile")) {
|
if (args[0].equals("profile")) {
|
||||||
ClientProfile profile = new ClientProfile("1.7.10", "asset1.7.10", 0, "Test1.7.10", "localhost", 25565, true, false, "net.minecraft.launchwrapper.Launch");
|
ClientProfile profile = new ClientProfile("1.7.10", "asset1.7.10", 0, "Test1.7.10", "Test server.", "localhost", 25565, true, false, "net.minecraft.launchwrapper.Launch");
|
||||||
|
|
||||||
try (Writer writer = IOHelper.newWriter(server.dir.resolve("profiles").resolve("Test.cfg"))) {
|
try (Writer writer = IOHelper.newWriter(server.dir.resolve("profiles").resolve("Test.cfg"))) {
|
||||||
LaunchServer.gson.toJson(profile, writer);
|
LaunchServer.gson.toJson(profile, writer);
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
public final class ClientProfile implements Comparable<ClientProfile> {
|
public final class ClientProfile implements Comparable<ClientProfile> {
|
||||||
public ClientProfile(String version, String assetIndex, int sortIndex, String title, String serverAddress, int serverPort, boolean updateFastCheck, boolean useWhitelist, String mainClass) {
|
public ClientProfile(String version, String assetIndex, int sortIndex, String title, String info, String serverAddress, int serverPort, boolean updateFastCheck, boolean useWhitelist, String mainClass) {
|
||||||
this.version = version;
|
this.version = version;
|
||||||
this.assetIndex = assetIndex;
|
this.assetIndex = assetIndex;
|
||||||
this.sortIndex = sortIndex;
|
this.sortIndex = sortIndex;
|
||||||
|
|
2
modules
2
modules
|
@ -1 +1 @@
|
||||||
Subproject commit df8b92281a93046b4959fc82c98c2eeab4fd5933
|
Subproject commit 38e11640ce4a4ed3e9745718db02a888770a22bb
|
Loading…
Reference in a new issue