diff --git a/Mage.Common/src/mage/view/CardView.java b/Mage.Common/src/mage/view/CardView.java index 4737a9c174c..467ef8fe13d 100644 --- a/Mage.Common/src/mage/view/CardView.java +++ b/Mage.Common/src/mage/view/CardView.java @@ -64,7 +64,6 @@ public class CardView implements Serializable { protected String art; protected Rarity rarity; protected String expansionSetCode; - protected boolean tapped; public List targets; @@ -97,9 +96,6 @@ public class CardView implements Serializable { this.expansionSetCode = card.getExpansionSetCode(); } - //FIXME - this.tapped = false; - if (card instanceof Spell) { Spell spell = (Spell)card; if (spell.getSpellAbility().getTargets().size() > 0) {