Fix DelegateQueueCoordinator

This commit is contained in:
dordsor21 2020-07-24 18:20:26 +01:00
parent b8b3e1e72a
commit b3ddabda29
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -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) {
if (parent != null) {
parent.setCompleteTask(whenDone);