additional fixes for Kaito's watcher (#10646)

This commit is contained in:
ssk97 2023-07-17 23:19:40 -07:00 committed by GitHub
parent 574321f034
commit a6e23f9704
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -20,6 +20,6 @@ public class PermanentInListPredicate implements Predicate<Permanent> {
@Override
public boolean apply(Permanent input, Game game) {
return (permanents != null && permanents.contains(input));
return (permanents.contains(input));
}
}

View file

@ -27,7 +27,6 @@ public class PermanentReferenceInCollectionPredicate implements Predicate<Perman
@Override
public boolean apply(Permanent input, Game game) {
return (references != null &&
references.contains(new MageObjectReference(input, game)));
return (references.contains(new MageObjectReference(input, game)));
}
}