Parameters in constructors omgedraait.

This commit is contained in:
Bram Veenboer
2011-05-08 16:26:37 +00:00
parent e135ea5a6d
commit 23b54e8403
9 changed files with 42 additions and 40 deletions

View File

@@ -12,7 +12,7 @@ public class Continuous extends Task {
protected boolean stop;
public Continuous(Action action, Target target, int sleep) {
super(action, target);
super(target, action);
this.sleep = sleep;
reset();
}