Change ButtonScheduler scope start method to public (#1254)

Fixes #765.
This commit is contained in:
Jamie Sinn
2018-07-29 22:26:48 -04:00
committed by Peter Johnson
parent 4801ae2499
commit 7bd3f9f0bd

View File

@@ -175,7 +175,7 @@ public abstract class Trigger extends SendableBase {
public abstract static class ButtonScheduler {
public abstract void execute();
protected void start() {
public void start() {
Scheduler.getInstance().addButton(this);
}
}