Change DummyAction to always execute.

there shpould not be any history for this, so execute it always.
This commit is contained in:
asofold 2012-11-09 11:08:03 +01:00
parent c824f54c3d
commit 4cb953e2bb

View File

@ -28,7 +28,7 @@ public class DummyAction extends Action {
* the definition
*/
public DummyAction(final String definition) {
super("dummyAction", 10000, 10000);
super("dummyAction", 0, 0);
this.definition = definition;
}
@ -47,4 +47,5 @@ public class DummyAction extends Action {
public String toString() {
return definition;
}
}