[minor] removed unused imports

This commit is contained in:
North 2013-03-10 14:17:55 +02:00
parent a3be8073e2
commit 2b7471df3f
4 changed files with 14 additions and 39 deletions

View file

@ -33,7 +33,6 @@ import mage.Constants.Rarity;
import mage.abilities.Ability;
import mage.abilities.effects.common.FightTargetsEffect;
import mage.cards.CardImpl;
import mage.filter.common.FilterCreaturePermanent;
import mage.game.Game;
import mage.target.common.TargetCreaturePermanent;
@ -52,7 +51,7 @@ public class BloodFeud extends CardImpl<BloodFeud> {
// Target creature fights another target creature.
this.getSpellAbility().addEffect(new FightTargetsEffect());
this.getSpellAbility().addTarget(new TargetCreaturePermanent(true));
this.getSpellAbility().addTarget(new TargetOtherCreaturePermanent(true));
this.getSpellAbility().addTarget(new TargetOtherCreaturePermanent());
}
public BloodFeud(final BloodFeud card) {
@ -67,7 +66,7 @@ public class BloodFeud extends CardImpl<BloodFeud> {
class TargetOtherCreaturePermanent extends TargetCreaturePermanent {
public TargetOtherCreaturePermanent(boolean required) {
public TargetOtherCreaturePermanent() {
super(true);
}

View file

@ -36,8 +36,6 @@ import mage.abilities.Ability;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.ContinuousEffectImpl;
import mage.cards.CardImpl;
import mage.cards.Cards;
import mage.cards.CardsImpl;
import mage.filter.common.FilterCreatureCard;
import mage.game.Game;
import mage.game.permanent.Permanent;

View file

@ -27,7 +27,6 @@
*/
package mage.sets.lorwyn;
import java.util.List;
import java.util.UUID;
import mage.Constants;
import mage.Constants.CardType;