rolled back changes since 0.7.3 R2 - going to switch client/server architecture

This commit is contained in:
BetaSteward 2011-06-14 23:09:18 -04:00
parent 1f72804968
commit c38804af5f
103 changed files with 997 additions and 4921 deletions

View file

@ -72,12 +72,8 @@ public class TournamentSession {
if (!killed) {
Session session = SessionManager.getInstance().getSession(sessionId);
if (session != null) {
try {
session.fireCallback(new ClientCallback("tournamentInit", tournament.getId(), tournamentView));
return true;
} catch (CallbackException ex) {
logger.fatal("Unable to start tournament", ex);
}
session.fireCallback(new ClientCallback("tournamentInit", tournament.getId(), tournamentView));
return true;
}
}
return false;
@ -95,11 +91,7 @@ public class TournamentSession {
if (!killed) {
Session session = SessionManager.getInstance().getSession(sessionId);
if (session != null) {
try {
session.fireCallback(new ClientCallback("tournamentUpdate", tournament.getId(), tournamentView));
} catch (CallbackException ex) {
logger.fatal("tournament update error", ex);
}
session.fireCallback(new ClientCallback("tournamentUpdate", tournament.getId(), tournamentView));
}
}
}
@ -108,11 +100,7 @@ public class TournamentSession {
if (!killed) {
Session session = SessionManager.getInstance().getSession(sessionId);
if (session != null) {
try {
session.fireCallback(new ClientCallback("tournamentOver", tournament.getId(), message));
} catch (CallbackException ex) {
logger.fatal("tournament over error", ex);
}
session.fireCallback(new ClientCallback("tournamentOver", tournament.getId(), message));
}
}
}