[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

@ -45,13 +45,13 @@ import mage.util.functions.ApplyToPermanent;
* @author BetaSteward_at_googlemail.com
*/
public class CopyPermanentEffect extends OneShotEffect<CopyPermanentEffect> {
private FilterPermanent filter;
public CopyPermanentEffect() {
this(new FilterCreaturePermanent());
}
public CopyPermanentEffect(FilterPermanent filter) {
super(Outcome.Copy);
this.filter = filter;
@ -62,7 +62,7 @@ public class CopyPermanentEffect extends OneShotEffect<CopyPermanentEffect> {
super(effect);
this.filter = effect.filter.copy();
}
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(source.getControllerId());
@ -94,5 +94,5 @@ public class CopyPermanentEffect extends OneShotEffect<CopyPermanentEffect> {
public CopyPermanentEffect copy() {
return new CopyPermanentEffect(this);
}
}