add missing Override annotations

This commit is contained in:
Ingmar Goudt 2019-07-14 20:28:48 +02:00
parent 3fa2deaa64
commit 5ba206111a
15 changed files with 40 additions and 9 deletions

View file

@ -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);
}

View file

@ -59,6 +59,8 @@ public abstract class PlainTextDeckImporter extends DeckImporter {
return deckList;
}
@Override
public DeckCardLists importDeck(String file) {
return importDeck(file, null);
}

View file

@ -58,10 +58,6 @@ public class FilterCreaturePlayerOrPlaneswalker extends FilterPermanentOrPlayer
return this.creatureFilter;
}
public FilterPlayer getPlayerFilter() {
return this.playerFilter;
}
public FilterPlaneswalkerPermanent getPlaneswalkerFilter() {
return this.planeswalkerFilter;
}