made getGame abstract

master
melvin 2011-09-06 21:13:50 +08:00
parent 094bc9cdc0
commit be38ef3ece
1 changed files with 2 additions and 4 deletions

View File

@ -13,7 +13,7 @@ import magic.model.action.MagicPutIntoPlayAction;
import java.util.concurrent.atomic.AtomicInteger;
public class TestGameBuilder {
public abstract class TestGameBuilder {
private static final AtomicInteger currentId=new AtomicInteger(1);
@ -78,9 +78,7 @@ public class TestGameBuilder {
return lastPermanent;
}
public MagicGame getGame() {
return null;
}
public abstract MagicGame getGame();
public static MagicGame buildGame(final String id) {
MagicGame game = null;