removed showGameEndDialog message

This commit is contained in:
betasteward 2015-09-02 12:56:19 -04:00
parent 3ba67ace1c
commit 43bb51edaa
3 changed files with 0 additions and 12 deletions

View file

@ -305,10 +305,6 @@ public class Server {
if (ch != null)
ch.writeAndFlush(new GameErrorCallback(gameId, message)).addListener(WriteListener.getInstance());
}
public void showGameEndDialog(String sessionId, UUID gameId) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
public void startDraft(String sessionId, UUID draftId, UUID playerId) {
Channel ch = findChannel(sessionId);

View file

@ -1214,10 +1214,6 @@ public class ServerMain implements MageServer {
server.showTournament(sessionId, tournamentId);
}
public void showGameEndDialog(String sessionId, UUID gameId) {
server.showGameEndDialog(sessionId, gameId);
}
public void watchGame(String sessionId, UUID gameId, UUID chatId, GameView game) {
server.watchGame(sessionId, gameId, chatId, game);
}

View file

@ -279,10 +279,6 @@ public class User {
ServerMain.getInstance().showTournament(sessionId, tournamentId);
}
public void showGameEndDialog(final UUID gameId) {
ServerMain.getInstance().showGameEndDialog(sessionId, gameId);
}
public void draftStarted(final UUID draftId, final UUID playerId) {
ServerMain.getInstance().startDraft(sessionId, draftId, playerId);
}