Skip to content

Commit

Permalink
PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassaldanha committed Aug 25, 2020
1 parent 0338c92 commit 92da04c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -49,12 +49,12 @@ public SafeFuture<Void> start() {
.subscribe(SlotEventsChannel.class, this)
.subscribe(ReorgEventChannel.class, this);

return SafeFuture.completedFuture(null);
return SafeFuture.COMPLETE;
}

@Override
public SafeFuture<Void> stop() {
return SafeFuture.completedFuture(null);
return SafeFuture.COMPLETE;
}

@Subscribe
Expand Down

0 comments on commit 92da04c

Please sign in to comment.