From 91bb1c1de0c05e55e2a662cbe2d4b3b309b29b5e Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 4 Sep 2013 17:21:04 +0200 Subject: [PATCH] Removed unused code from Thassa God of the Sea. --- .../mage/sets/theros/ThassaGodOfTheSea.java | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Mage.Sets/src/mage/sets/theros/ThassaGodOfTheSea.java b/Mage.Sets/src/mage/sets/theros/ThassaGodOfTheSea.java index bcb9a1f779d..802e369442e 100644 --- a/Mage.Sets/src/mage/sets/theros/ThassaGodOfTheSea.java +++ b/Mage.Sets/src/mage/sets/theros/ThassaGodOfTheSea.java @@ -83,9 +83,6 @@ public class ThassaGodOfTheSea extends CardImpl { Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CantBeBlockedTargetEffect(Duration.EndOfTurn), new ManaCostsImpl("{1}{U}")); ability.addTarget(new TargetControlledCreaturePermanent(true)); this.addAbility(ability); - - - } public ThassaGodOfTheSea(final ThassaGodOfTheSea card) { @@ -97,19 +94,3 @@ public class ThassaGodOfTheSea extends CardImpl { return new ThassaGodOfTheSea(this); } } - - -class ThassaGodOfTheSeaToken extends Token { - - public ThassaGodOfTheSeaToken() { - super("Cleric", "2/1 white Cleric enchantment creature"); - this.cardType.add(CardType.CREATURE); - this.cardType.add(CardType.ENCHANTMENT); - - this.subtype.add("Cleric"); - this.color.isWhite(); - - this.power = new MageInt(2); - this.toughness = new MageInt(1); - } -}