[refactor] removed generic parameter from Player

This commit is contained in:
North 2014-06-03 11:19:49 +03:00
parent 99854be1fb
commit 1867a150c1
12 changed files with 15 additions and 23 deletions

View file

@ -54,7 +54,7 @@ import java.util.*;
*
* @author BetaSteward_at_googlemail.com
*/
public class RandomPlayer extends ComputerPlayer<RandomPlayer> {
public class RandomPlayer extends ComputerPlayer {
private boolean isSimulatedPlayer;
private static Random rnd = new Random();

View file

@ -66,7 +66,7 @@ import mage.game.stack.StackObject;
* @author BetaSteward_at_googlemail.com
*/
@Ignore
public class TestPlayer extends ComputerPlayer<TestPlayer> {
public class TestPlayer extends ComputerPlayer {
private final List<PlayerAction> actions = new ArrayList<>();
private final List<String> choices = new ArrayList<>();