mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
LaunchServer stopped entry fixed.
This commit is contained in:
parent
eca11301b3
commit
9f09eb405d
1 changed files with 3 additions and 4 deletions
|
@ -258,6 +258,7 @@ private PostBuildTransformConf(BlockConfigEntry block, Path coredir) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("resource")
|
||||||
public static void main(String... args) throws Throwable {
|
public static void main(String... args) throws Throwable {
|
||||||
JVMHelper.checkStackTrace(LaunchServer.class);
|
JVMHelper.checkStackTrace(LaunchServer.class);
|
||||||
JVMHelper.verifySystemProperties(LaunchServer.class, true);
|
JVMHelper.verifySystemProperties(LaunchServer.class, true);
|
||||||
|
@ -268,9 +269,7 @@ public static void main(String... args) throws Throwable {
|
||||||
// Start LaunchServer
|
// Start LaunchServer
|
||||||
Instant start = Instant.now();
|
Instant start = Instant.now();
|
||||||
try {
|
try {
|
||||||
try (LaunchServer lsrv = new LaunchServer(IOHelper.WORKING_DIR)) {
|
new LaunchServer(IOHelper.WORKING_DIR).run();
|
||||||
lsrv.run();
|
|
||||||
}
|
|
||||||
} catch (Throwable exc) {
|
} catch (Throwable exc) {
|
||||||
LogHelper.error(exc);
|
LogHelper.error(exc);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue