removed unused "cause" parameter in actions

This commit is contained in:
Stephan Richter
2021-06-18 11:51:15 +02:00
parent db94d55cbc
commit bf3d6859c5
36 changed files with 48 additions and 49 deletions

View File

@@ -24,7 +24,7 @@ public class SetDisplayText extends TextAction{
}
@Override
public boolean fire(Context context,Object cause) {
public boolean fire(Context context) {
plan.place(display.text(fill(text, context)));
return true;
}