Remove the debug after fixing the issue

This commit is contained in:
Aria 2023-05-08 17:11:01 -07:00
parent 9feebd4582
commit 7988bcdf12

View file

@ -127,12 +127,7 @@ public class DelayedExecutorService {
private static void stopRepeatingThread()
{
repeater.shutdown();
try {
repeater.awaitTermination(1L, TimeUnit.SECONDS);
}catch(Exception e){
e.printStackTrace();
}
repeater.shutdownNow();
repeater=null; // Dispose of so the threads get torn down and the program can stop successfully
}