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

@@ -20,7 +20,7 @@ public class TriggerContact extends Action {
private Contact contact = null;
@Override
public boolean fire(Context context,Object cause) {
public boolean fire(Context context) {
if (isSet(contact)) return contact.trigger(200);
return false;
}