mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
removed showGameEndDialog message
This commit is contained in:
parent
3ba67ace1c
commit
43bb51edaa
3 changed files with 0 additions and 12 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue