refactored many other predicates to singleton enums

This commit is contained in:
Evan Kranzler 2019-01-12 16:30:49 -05:00
parent dc409c9a9e
commit 8629977f14
595 changed files with 657 additions and 660 deletions

View file

@ -34,7 +34,7 @@ public class PopulateEffect extends OneShotEffect {
private static final FilterPermanent filter = new FilterPermanent("token for populate");
static {
filter.add(new TokenPredicate());
filter.add(TokenPredicate.instance);
filter.add(new ControllerPredicate(TargetController.YOU));
}