remove deprecated discard method

This commit is contained in:
Ingmar Goudt 2019-12-30 00:22:33 +01:00
parent f68d6b80ba
commit 978309827b
13 changed files with 10 additions and 33 deletions

View file

@ -2304,11 +2304,6 @@ public class TestPlayer implements Player {
return computerPlayer.removeFromLibrary(card, game);
}
@Override
public void discard(int amount, Ability source, Game game) {
computerPlayer.discard(amount, source, game);
}
@Override
public Card discardOne(boolean random, Ability source, Game game) {
return computerPlayer.discardOne(random, source, game);

View file

@ -657,11 +657,6 @@ public class PlayerStub implements Player {
return 1;
}
@Override
public void discard(int amount, Ability source, Game game) {
}
@Override
public Card discardOne(boolean random, Ability source, Game game) {
return null;