remove unused variable

This commit is contained in:
Maxmtg
2013-05-08 20:41:18 +00:00
parent 1a1b1c71b6
commit 77742bc532

View File

@@ -144,11 +144,6 @@ public class MatchController {
inputQueue = new InputQueue(this); inputQueue = new InputQueue(this);
currentGame = new GameState(players.keySet(), gameType, this); currentGame = new GameState(players.keySet(), gameType, this);
Map<Player, PlayerStartConditions> startConditions = new HashMap<Player, PlayerStartConditions>();
for (Player p : currentGame.getPlayers()) {
startConditions.put(p, players.get(p.getLobbyPlayer()));
}
try { try {
attachUiToMatch(this, FControl.SINGLETON_INSTANCE.getLobby().getGuiPlayer()); attachUiToMatch(this, FControl.SINGLETON_INSTANCE.getLobby().getGuiPlayer());