Compare commits
No commits in common. "f537fd4667f9d1f6b8089c8e7e498bc2b8728dc6" and "729db37cdc8e05e013a7dda194e16b907797218c" have entirely different histories.
f537fd4667
...
729db37cdc
2 changed files with 5 additions and 1 deletions
|
@ -47,7 +47,7 @@ repositories {
|
|||
dependencies {
|
||||
implementation 'org.geysermc.mcprotocollib:protocol:1.21-SNAPSHOT'
|
||||
implementation 'net.kyori:adventure-text-serializer-ansi:4.15.0'
|
||||
implementation 'com.google.code.gson:gson:2.11.0'
|
||||
implementation 'com.google.code.gson:gson:2.10.1'
|
||||
implementation 'com.google.guava:guava:31.1-jre'
|
||||
implementation 'org.jline:jline:3.23.0'
|
||||
implementation 'ch.qos.logback:logback-classic:1.5.11'
|
||||
|
|
|
@ -196,6 +196,10 @@ public class Main {
|
|||
try {
|
||||
final boolean executorDone = executor.awaitTermination(5, TimeUnit.SECONDS);
|
||||
final boolean executorServiceDone = executorService.awaitTermination(5, TimeUnit.SECONDS);
|
||||
|
||||
if (!executorDone || !executorServiceDone) {
|
||||
System.out.println("Executors failed to shut down");
|
||||
}
|
||||
} catch (InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue