[refactoring][minor] Replaced all tabs with four spaces.

This commit is contained in:
North 2012-06-19 23:50:20 +03:00
parent e646e4768d
commit 239a4fb100
2891 changed files with 79411 additions and 79411 deletions

View file

@ -40,28 +40,28 @@ import mage.game.Game;
*/
public class RemoveDelayedTriggeredAbilityEffect extends OneShotEffect<RemoveDelayedTriggeredAbilityEffect> {
protected UUID abilityId;
protected UUID abilityId;
public RemoveDelayedTriggeredAbilityEffect(UUID abilityId) {
super(Outcome.Neutral);
this.abilityId = abilityId;
staticText = "remove triggered ability";
}
public RemoveDelayedTriggeredAbilityEffect(UUID abilityId) {
super(Outcome.Neutral);
this.abilityId = abilityId;
staticText = "remove triggered ability";
}
public RemoveDelayedTriggeredAbilityEffect(final RemoveDelayedTriggeredAbilityEffect effect) {
super(effect);
this.abilityId = effect.abilityId;
}
public RemoveDelayedTriggeredAbilityEffect(final RemoveDelayedTriggeredAbilityEffect effect) {
super(effect);
this.abilityId = effect.abilityId;
}
@Override
public RemoveDelayedTriggeredAbilityEffect copy() {
return new RemoveDelayedTriggeredAbilityEffect(this);
}
@Override
public RemoveDelayedTriggeredAbilityEffect copy() {
return new RemoveDelayedTriggeredAbilityEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
game.getState().removeDelayedTriggeredAbility(abilityId);
return true;
}
@Override
public boolean apply(Game game, Ability source) {
game.getState().removeDelayedTriggeredAbility(abilityId);
return true;
}
}