diff --git a/LaunchServer/src/main/java/ru/gravit/launchserver/command/basic/TestCommand.java b/LaunchServer/src/main/java/ru/gravit/launchserver/command/basic/TestCommand.java index 6e3b7723..850e573e 100644 --- a/LaunchServer/src/main/java/ru/gravit/launchserver/command/basic/TestCommand.java +++ b/LaunchServer/src/main/java/ru/gravit/launchserver/command/basic/TestCommand.java @@ -1,20 +1,16 @@ package ru.gravit.launchserver.command.basic; -import ru.gravit.launcher.profiles.ClientProfile; import ru.gravit.launchserver.LaunchServer; import ru.gravit.launchserver.command.Command; import ru.gravit.launchserver.socket.NettyServerSocketHandler; import ru.gravit.utils.helper.CommonHelper; -import ru.gravit.utils.helper.IOHelper; - -import java.io.Writer; public class TestCommand extends Command { public TestCommand(LaunchServer server) { super(server); } - NettyServerSocketHandler handler; + private NettyServerSocketHandler handler = null; @Override public String getArgsDescription() { @@ -33,14 +29,6 @@ public void invoke(String... args) throws Exception { handler = new NettyServerSocketHandler(server); if (args[0].equals("start")) { 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"); - try (Writer writer = IOHelper.newWriter(server.dir.resolve("profiles").resolve("Test.cfg"))) { - LaunchServer.gson.toJson(profile, writer); - } - - } if (args[0].equals("stop")) { handler.close(); diff --git a/libLauncher/src/main/java/ru/gravit/launcher/profiles/ClientProfile.java b/libLauncher/src/main/java/ru/gravit/launcher/profiles/ClientProfile.java index ffbfb5bb..b5d6476c 100644 --- a/libLauncher/src/main/java/ru/gravit/launcher/profiles/ClientProfile.java +++ b/libLauncher/src/main/java/ru/gravit/launcher/profiles/ClientProfile.java @@ -10,22 +10,6 @@ import java.util.*; public final class ClientProfile implements Comparable { - public ClientProfile(String version, String assetIndex, int sortIndex, String title, String serverAddress, int serverPort, boolean updateFastCheck, boolean useWhitelist, String mainClass) { - this.version = version; - this.assetIndex = assetIndex; - this.sortIndex = sortIndex; - this.title = title; - this.info = info; - this.serverAddress = serverAddress; - this.serverPort = serverPort; - this.updateFastCheck = updateFastCheck; - this.useWhitelist = useWhitelist; - this.mainClass = mainClass; - } - - public ClientProfile() { - } - @LauncherAPI public enum Version { MC147("1.4.7", 51),