Merge pull request #2727 from sotovdev/fix_29122016

Renamed method
This commit is contained in:
LevelX2 2016-12-29 13:59:00 +01:00 committed by GitHub
commit 7979d4ed41
3 changed files with 4 additions and 4 deletions

View file

@ -145,7 +145,7 @@ public class GameController implements GameCallback {
public void cleanUp() { public void cleanUp() {
cancelTimeout(); cancelTimeout();
for (GameSessionPlayer gameSessionPlayer : gameSessions.values()) { for (GameSessionPlayer gameSessionPlayer : gameSessions.values()) {
gameSessionPlayer.CleanUp(); gameSessionPlayer.cleanUp();
} }
ChatManager.getInstance().destroyChatSession(chatId); ChatManager.getInstance().destroyChatSession(chatId);
for (PriorityTimer priorityTimer : timers.values()) { for (PriorityTimer priorityTimer : timers.values()) {

View file

@ -74,8 +74,8 @@ public class GameSessionPlayer extends GameSessionWatcher {
} }
@Override @Override
public void CleanUp() { public void cleanUp() {
super.CleanUp(); super.cleanUp();
} }
public void ask(final String question, final Map<String, Serializable> options) { public void ask(final String question, final Map<String, Serializable> options) {

View file

@ -114,7 +114,7 @@ public class GameSessionWatcher {
* Cleanup if Session ends * Cleanup if Session ends
* *
*/ */
public void CleanUp() { public void cleanUp() {
} }