Fix raw use of parameterized class 'ManaCostsImpl' - 'a' cards (#9016)

Co-authored-by: DeepCrimson <deepcrimson@users.noreplyl.github.com>
This commit is contained in:
DeepCrimson 2022-05-27 18:52:37 -07:00 committed by GitHub
parent 63b2df2af2
commit ece7ea45bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
190 changed files with 207 additions and 207 deletions

View file

@ -37,7 +37,7 @@ public final class AirServant extends CardImpl {
this.power = new MageInt(4);
this.toughness = new MageInt(3);
this.addAbility(FlyingAbility.getInstance());
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TapTargetEffect(), new ManaCostsImpl("{2}{U}"));
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TapTargetEffect(), new ManaCostsImpl<>("{2}{U}"));
ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability);
}