(final Card c)
| 633 | } |
| 634 | |
| 635 | public boolean isCardExiled(final Card c) { |
| 636 | return getCardsIn(ZoneType.Exile).contains(c); |
| 637 | } |
| 638 | |
| 639 | public boolean isCardInPlay(final String cardName) { |
| 640 | return getCardsIn(ZoneType.Battlefield).anyMatch(CardPredicates.nameEquals(cardName)); |
nothing calls this directly
no test coverage detected