removed redundant modifiers from interfaces

This commit is contained in:
North 2012-12-20 23:45:22 +02:00
parent 18b4be3ec7
commit fde10788db
53 changed files with 762 additions and 755 deletions

View file

@ -37,11 +37,10 @@ import java.util.UUID;
public interface StackObject extends MageObject, Controllable {
// public Card getCard();
public boolean resolve(Game game);
public UUID getSourceId();
public void counter(UUID sourceId, Game game);
public Ability getStackAbility();
boolean resolve(Game game);
UUID getSourceId();
void counter(UUID sourceId, Game game);
Ability getStackAbility();
@Override
public StackObject copy();
StackObject copy();
}