mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-27 12:45:59 +01:00
Allow for clean shutdown
This commit is contained in:
parent
e16b642e0c
commit
cfcd8fbf3e
@ -403,6 +403,8 @@ public class FabricServer extends DynmapServerInterface {
|
||||
f.get();
|
||||
} catch (CancellationException cx) {
|
||||
return null;
|
||||
} catch (InterruptedException cx) {
|
||||
return null;
|
||||
} catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -403,6 +403,8 @@ public class FabricServer extends DynmapServerInterface {
|
||||
f.get();
|
||||
} catch (CancellationException cx) {
|
||||
return null;
|
||||
} catch (InterruptedException cx) {
|
||||
return null;
|
||||
} catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -429,6 +429,8 @@ public class FabricServer extends DynmapServerInterface {
|
||||
f.get();
|
||||
} catch (CancellationException cx) {
|
||||
return null;
|
||||
} catch (InterruptedException cx) {
|
||||
return null;
|
||||
} catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -427,6 +427,8 @@ public class FabricServer extends DynmapServerInterface {
|
||||
f.get();
|
||||
} catch (CancellationException cx) {
|
||||
return null;
|
||||
} catch (InterruptedException cx) {
|
||||
return null;
|
||||
} catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -412,6 +412,8 @@ public class FabricServer extends DynmapServerInterface {
|
||||
f.get();
|
||||
} catch (CancellationException cx) {
|
||||
return null;
|
||||
} catch (InterruptedException cx) {
|
||||
return null;
|
||||
} catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -886,6 +886,9 @@ public class DynmapPlugin
|
||||
catch (CancellationException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (InterruptedException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -892,6 +892,9 @@ public class DynmapPlugin
|
||||
catch (CancellationException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (InterruptedException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -876,6 +876,9 @@ public class DynmapPlugin
|
||||
catch (CancellationException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (InterruptedException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -899,6 +899,9 @@ public class DynmapPlugin
|
||||
catch (CancellationException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (InterruptedException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -900,6 +900,9 @@ public class DynmapPlugin
|
||||
catch (CancellationException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (InterruptedException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -918,6 +918,9 @@ public class DynmapPlugin
|
||||
catch (CancellationException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (InterruptedException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -894,6 +894,9 @@ public class DynmapPlugin
|
||||
catch (CancellationException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (InterruptedException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
@ -888,6 +888,9 @@ public class DynmapPlugin
|
||||
catch (CancellationException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (InterruptedException cx) {
|
||||
return null;
|
||||
}
|
||||
catch (ExecutionException xx) {
|
||||
Log.severe("Exception while loading chunks", xx.getCause());
|
||||
return null;
|
||||
|
Loading…
Reference in New Issue
Block a user