Remove explicit set of required property in constructor

This commit is contained in:
Quercitron 2014-06-13 15:15:16 +04:00
parent 250909a464
commit 0a0983d7e9
2272 changed files with 2454 additions and 2538 deletions

View file

@ -40,11 +40,6 @@ public class TargetControlledCreaturePermanent extends TargetControlledPermanent
this(1, 1, new FilterControlledCreaturePermanent(), false);
}
public TargetControlledCreaturePermanent(boolean required) {
this(1, 1, new FilterControlledCreaturePermanent(), false);
this.required = required;
}
public TargetControlledCreaturePermanent(int numTargets) {
this(numTargets, numTargets, new FilterControlledCreaturePermanent(), false);
}
@ -54,11 +49,6 @@ public class TargetControlledCreaturePermanent extends TargetControlledPermanent
this.targetName = filter.getMessage();
}
public TargetControlledCreaturePermanent(int minNumTargets, int maxNumTargets, FilterControlledCreaturePermanent filter, boolean notTarget, boolean required) {
this(minNumTargets, maxNumTargets, filter, notTarget);
this.required = required;
}
public TargetControlledCreaturePermanent(final TargetControlledCreaturePermanent target) {
super(target);
}