Remove unneeded parameter from StackObjectCopyApplier.getNextNewTargetType (all users were using an Iterator or a fixed return value)

This commit is contained in:
Alex W. Jackson 2022-09-14 03:23:21 -04:00
parent c401b35b63
commit efa7b485b0
10 changed files with 10 additions and 10 deletions

View file

@ -30,7 +30,7 @@ public abstract class CopySpellForEachItCouldTargetEffect extends OneShotEffect
}
@Override
public MageObjectReferencePredicate getNextNewTargetType(int copyNumber) {
public MageObjectReferencePredicate getNextNewTargetType() {
if (newTargetTypes.hasNext()) {
return newTargetTypes.next();
}