mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-23 18:55:14 +01:00
Allow interrupted exception when shutting down
This commit is contained in:
parent
1093da7657
commit
e16b642e0c
@ -543,6 +543,8 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
|
||||
delay = f.get();
|
||||
} catch (CancellationException cx) {
|
||||
return null;
|
||||
} catch (InterruptedException cx) {
|
||||
return null;
|
||||
} catch (ExecutionException ex) {
|
||||
Log.severe("Exception while fetching chunks: ", ex.getCause());
|
||||
return null;
|
||||
|
Loading…
Reference in New Issue
Block a user