mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Fix DelegateQueueCoordinator
This commit is contained in:
parent
b8b3e1e72a
commit
b3ddabda29
@ -176,6 +176,13 @@ public class DelegateQueueCoordinator extends QueueCoordinator {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override public Runnable getCompleteTask() {
|
||||||
|
if (parent != null) {
|
||||||
|
return parent.getCompleteTask();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
@Override public void setCompleteTask(Runnable whenDone) {
|
@Override public void setCompleteTask(Runnable whenDone) {
|
||||||
if (parent != null) {
|
if (parent != null) {
|
||||||
parent.setCompleteTask(whenDone);
|
parent.setCompleteTask(whenDone);
|
||||||
|
Loading…
Reference in New Issue
Block a user