Gemstone Mine: remove dead code

This commit is contained in:
Neil Gentleman 2015-11-09 02:18:01 -08:00
parent f73e948f08
commit 33e106919c

View file

@ -40,9 +40,6 @@ import mage.cards.CardImpl;
import mage.constants.CardType; import mage.constants.CardType;
import mage.constants.Rarity; import mage.constants.Rarity;
import mage.counters.CounterType; import mage.counters.CounterType;
import mage.filter.FilterPermanent;
import mage.filter.predicate.Predicates;
import mage.filter.predicate.permanent.AnotherPredicate;
/** /**
* *
@ -50,12 +47,6 @@ import mage.filter.predicate.permanent.AnotherPredicate;
*/ */
public class GemstoneMine extends CardImpl { public class GemstoneMine extends CardImpl {
private static final FilterPermanent filter = new FilterPermanent();
static {
filter.add(Predicates.not(new AnotherPredicate()));
}
public GemstoneMine(UUID ownerId) { public GemstoneMine(UUID ownerId) {
super(ownerId, 119, "Gemstone Mine", Rarity.RARE, new CardType[]{CardType.LAND}, ""); super(ownerId, 119, "Gemstone Mine", Rarity.RARE, new CardType[]{CardType.LAND}, "");
this.expansionSetCode = "TSB"; this.expansionSetCode = "TSB";