mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
add missing Override annotations
This commit is contained in:
parent
3fa2deaa64
commit
5ba206111a
15 changed files with 40 additions and 9 deletions
|
|
@ -39,8 +39,6 @@ import java.util.UUID;
|
|||
*/
|
||||
public class HideawayAbility extends StaticAbility {
|
||||
|
||||
private final String name;
|
||||
|
||||
public HideawayAbility() {
|
||||
this("land");
|
||||
}
|
||||
|
|
@ -126,7 +124,7 @@ class HideawayLookAtFaceDownCardEffect extends AsThoughEffectImpl {
|
|||
staticText = "You may look at cards exiled with {this}";
|
||||
}
|
||||
|
||||
public HideawayLookAtFaceDownCardEffect(final HideawayLookAtFaceDownCardEffect effect) {
|
||||
private HideawayLookAtFaceDownCardEffect(final HideawayLookAtFaceDownCardEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,6 +59,8 @@ public abstract class PlainTextDeckImporter extends DeckImporter {
|
|||
return deckList;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public DeckCardLists importDeck(String file) {
|
||||
return importDeck(file, null);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -58,10 +58,6 @@ public class FilterCreaturePlayerOrPlaneswalker extends FilterPermanentOrPlayer
|
|||
return this.creatureFilter;
|
||||
}
|
||||
|
||||
public FilterPlayer getPlayerFilter() {
|
||||
return this.playerFilter;
|
||||
}
|
||||
|
||||
public FilterPlaneswalkerPermanent getPlaneswalkerFilter() {
|
||||
return this.planeswalkerFilter;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue