diff --git a/Launcher/source/client/ClientProfile.java b/Launcher/source/client/ClientProfile.java index e12c97b..68b6100 100644 --- a/Launcher/source/client/ClientProfile.java +++ b/Launcher/source/client/ClientProfile.java @@ -12,7 +12,6 @@ import launcher.serialize.HInput; import launcher.serialize.config.ConfigObject; import launcher.serialize.config.entry.BlockConfigEntry; -import launcher.serialize.config.entry.BooleanConfigEntry; import launcher.serialize.config.entry.ConfigEntry.Type; import launcher.serialize.config.entry.IntegerConfigEntry; import launcher.serialize.config.entry.ListConfigEntry; @@ -39,7 +38,7 @@ private final ListConfigEntry update; private final ListConfigEntry updateExclusions; private final ListConfigEntry updateVerify; - private final BooleanConfigEntry updateFastCheck; + //private final BooleanConfigEntry updateFastCheck; // Client launcher private final StringConfigEntry mainClass; @@ -65,7 +64,7 @@ update = block.getEntry("update", ListConfigEntry.class); updateVerify = block.getEntry("updateVerify", ListConfigEntry.class); updateExclusions = block.getEntry("updateExclusions", ListConfigEntry.class); - updateFastCheck = block.getEntry("updateFastCheck", BooleanConfigEntry.class); + //updateFastCheck = block.getEntry("updateFastCheck", BooleanConfigEntry.class); // Client launcher mainClass = block.getEntry("mainClass", StringConfigEntry.class);