mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
remove deprecated, unused, unimplemented method
This commit is contained in:
parent
ffa94811f6
commit
f438b76b31
2 changed files with 0 additions and 9 deletions
|
@ -161,9 +161,6 @@ public interface Permanent extends Card, Controllable {
|
|||
|
||||
String getValue(GameState state);
|
||||
|
||||
@Deprecated
|
||||
void addAbility(Ability ability);
|
||||
|
||||
@Deprecated
|
||||
void addAbility(Ability ability, Game game);
|
||||
|
||||
|
|
|
@ -265,12 +265,6 @@ public abstract class PermanentImpl extends CardImpl implements Permanent {
|
|||
return abilities;
|
||||
}
|
||||
|
||||
@Override
|
||||
@Deprecated
|
||||
public void addAbility(Ability ability) {
|
||||
throw new UnsupportedOperationException("Unsupported operation: use addAbility(Ability ability, Game game) instead");
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param ability
|
||||
|
|
Loading…
Reference in a new issue