removed Copier

This commit is contained in:
BetaSteward 2010-04-16 03:46:26 +00:00
parent 978f697f41
commit 442e127ab7

View file

@ -64,7 +64,7 @@ import mage.watchers.Watchers;
*/ */
public class GameState implements Serializable { public class GameState implements Serializable {
private static final transient Copier<GameState> copier = new Copier<GameState>(); // private static final transient Copier<GameState> copier = new Copier<GameState>();
private Players players = new Players(); private Players players = new Players();
private UUID activePlayerId; private UUID activePlayerId;
private UUID priorityPlayerId; private UUID priorityPlayerId;
@ -233,12 +233,6 @@ public class GameState implements Serializable {
return null; return null;
} }
public GameState copy() {
return copier.copy(this);
}
public void restore(GameState state) { public void restore(GameState state) {
this.stack = state.stack; this.stack = state.stack;
this.effects = state.effects; this.effects = state.effects;