change manipulateCardList to CardView

This commit is contained in:
Peter F. Patel-Schneider
2019-01-14 21:22:27 -05:00
parent fb80dece04
commit aa7ad578d5
7 changed files with 47 additions and 55 deletions

View File

@@ -29,7 +29,6 @@ import forge.deck.CardPool;
import forge.deck.FSideboardDialog;
import forge.game.GameEntityView;
import forge.game.GameView;
import forge.game.card.Card;
import forge.game.card.CardView;
import forge.game.phase.PhaseType;
import forge.game.player.DelayedReveal;
@@ -522,7 +521,7 @@ public class MatchController extends AbstractGuiGame {
}
@Override
public List<Card> manipulateCardList(final String title, final List<Card> cards, final List<Card> manipulable, final boolean toTop, final boolean toBottom, final boolean toAnywhere) {
public List<CardView> manipulateCardList(final String title, final List<CardView> cards, final List<CardView> manipulable, final boolean toTop, final boolean toBottom, final boolean toAnywhere) {
System.err.println("Not implemented yet - should never be called");
return null;
}