[STYLE] Удалены лишние импорты + [ANY] Обновлены модули.

This commit is contained in:
zaxar163 2019-01-15 14:14:36 +03:00
parent 6db5d818b0
commit 8163266141
4 changed files with 4 additions and 4 deletions

View file

@ -38,7 +38,6 @@
import java.io.IOException;
import java.lang.ProcessBuilder.Redirect;
import java.net.InetSocketAddress;
import java.net.MalformedURLException;
import java.net.SocketAddress;
import java.nio.file.*;
import java.nio.file.attribute.BasicFileAttributes;

View file

@ -35,7 +35,8 @@ public void invoke(String... args) throws Exception {
CommonHelper.newThread("Netty Server", true, handler).start();
}
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"))) {
LaunchServer.gson.toJson(profile, writer);
}

View file

@ -10,7 +10,7 @@
import java.util.*;
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.assetIndex = assetIndex;
this.sortIndex = sortIndex;

@ -1 +1 @@
Subproject commit df8b92281a93046b4959fc82c98c2eeab4fd5933
Subproject commit 38e11640ce4a4ed3e9745718db02a888770a22bb