diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/KitsuneHealer.java b/Mage.Sets/src/mage/sets/championsofkamigawa/KitsuneHealer.java index 68780dce34a..ee4fa316e71 100644 --- a/Mage.Sets/src/mage/sets/championsofkamigawa/KitsuneHealer.java +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/KitsuneHealer.java @@ -38,7 +38,6 @@ import mage.abilities.Ability; import mage.abilities.common.SimpleActivatedAbility; import mage.abilities.costs.common.TapSourceCost; import mage.abilities.effects.PreventionEffectImpl; -import mage.abilities.effects.common.PreventAllCombatDamageEffect; import mage.abilities.effects.common.PreventDamageTargetEffect; import mage.cards.CardImpl; import mage.filter.Filter; @@ -94,7 +93,7 @@ class KitsuneHealerEffect extends PreventionEffectImpl { staticText = "Prevent all damage that would be dealt to target legendary creature this turn"; } - public KitsuneHealerEffect(final PreventAllCombatDamageEffect effect) { + public KitsuneHealerEffect(final KitsuneHealerEffect effect) { super(effect); } diff --git a/Mage.Sets/src/mage/sets/shardsofalara/Godtoucher.java b/Mage.Sets/src/mage/sets/shardsofalara/Godtoucher.java index 10b18696d5b..4f51481537d 100644 --- a/Mage.Sets/src/mage/sets/shardsofalara/Godtoucher.java +++ b/Mage.Sets/src/mage/sets/shardsofalara/Godtoucher.java @@ -38,7 +38,6 @@ import mage.abilities.common.SimpleActivatedAbility; import mage.abilities.costs.common.TapSourceCost; import mage.abilities.costs.mana.ManaCostsImpl; import mage.abilities.effects.PreventionEffectImpl; -import mage.abilities.effects.common.PreventAllCombatDamageEffect; import mage.cards.CardImpl; import mage.filter.Filter.ComparisonType; import mage.filter.common.FilterCreaturePermanent; @@ -94,7 +93,7 @@ class GodtoucherEffect extends PreventionEffectImpl { staticText = "Prevent all damage that would be dealt to target creature with power 5 or greater this turn"; } - public GodtoucherEffect(final PreventAllCombatDamageEffect effect) { + public GodtoucherEffect(final GodtoucherEffect effect) { super(effect); } diff --git a/Mage/src/mage/counters/common/HoofprintCounter.java b/Mage/src/mage/counters/common/HoofprintCounter.java index 69320442957..15d52d86362 100644 --- a/Mage/src/mage/counters/common/HoofprintCounter.java +++ b/Mage/src/mage/counters/common/HoofprintCounter.java @@ -5,7 +5,7 @@ import mage.counters.Counter; /** * @author Loki */ -public class HoofprintCounter extends Counter { +public class HoofprintCounter extends Counter { public HoofprintCounter() { super("Hoofprint");