Implemented Blade of the Bloodchief

Removed some unused imports which were causing compiler warnings

Javadoc for TriggeredAbilityImpl to clarrify that it only really works for the source of the ability.
This commit is contained in:
maurer.it 2011-08-14 00:49:27 -04:00
parent 45e46d5cfa
commit 9cc328574f
3 changed files with 2 additions and 3 deletions

View file

@ -29,7 +29,6 @@ package mage.sets.tenth;
import java.util.UUID;
import com.sun.org.apache.bcel.internal.generic.NEW;
import mage.Constants.CardType;
import mage.Constants.Rarity;
import mage.abilities.effects.common.SacrificeEffect;

View file

@ -29,7 +29,6 @@ package mage.sets.worldwake;
import java.util.UUID;
import com.sun.corba.se.spi.monitoring.StatisticMonitoredAttribute;
import mage.Constants;
import mage.Constants.CardType;
import mage.Constants.Rarity;

View file

@ -37,7 +37,8 @@ import mage.game.events.GameEvent.EventType;
import mage.game.events.ZoneChangeEvent;
/**
*
* Is applied when the {@link Permanent} with this ability instance changes zones.
*
* @author BetaSteward_at_googlemail.com
*/
public class ZoneChangeTriggeredAbility<T extends ZoneChangeTriggeredAbility<T>> extends TriggeredAbilityImpl<T> {