forked from External/mage
Remove explicit set of required property in constructor
This commit is contained in:
parent
250909a464
commit
0a0983d7e9
2272 changed files with 2454 additions and 2538 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue