Avoid exception report during shutdown

This commit is contained in:
Mike Primm 2022-02-16 18:43:30 -06:00
parent 8e3d349f48
commit 2e0a167c68

View file

@ -926,6 +926,8 @@ public class MapManager {
f.get();
} catch (CancellationException cx) {
return;
} catch (InterruptedException cx) {
return;
} catch (ExecutionException ex) {
Log.severe("Error while checking world times: ", ex.getCause());
} catch (Exception ix) {