mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
removed unused state from CallbackClientImpl
This commit is contained in:
parent
5768d2a8d5
commit
e46399c1e0
1 changed files with 0 additions and 8 deletions
|
@ -64,16 +64,12 @@ import org.apache.log4j.Logger;
|
|||
public class CallbackClientImpl implements CallbackClient {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(CallbackClientImpl.class);
|
||||
private final UUID clientId;
|
||||
private final MageFrame frame;
|
||||
private int messageId = 0;
|
||||
private int gameInformMessageId = 0;
|
||||
private final boolean firstRun;
|
||||
|
||||
public CallbackClientImpl(MageFrame frame) {
|
||||
this.clientId = UUID.randomUUID();
|
||||
this.frame = frame;
|
||||
this.firstRun = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -401,10 +397,6 @@ public class CallbackClientImpl implements CallbackClient {
|
|||
}
|
||||
}
|
||||
|
||||
public UUID getId() {
|
||||
return clientId;
|
||||
}
|
||||
|
||||
private void joinedTable(UUID roomId, UUID tableId, boolean isTournament) {
|
||||
try {
|
||||
frame.showTableWaitingDialog(roomId, tableId, isTournament);
|
||||
|
|
Loading…
Reference in a new issue