* Fixed ChatSession handling.

This commit is contained in:
LevelX2 2014-07-30 20:07:55 +02:00
parent 05426f7dec
commit f2fc548f08
2 changed files with 6 additions and 5 deletions

View file

@ -72,8 +72,6 @@ public class ChatManager {
public void leaveChat(UUID chatId, UUID userId) {
if (chatSessions.containsKey(chatId)) {
chatSessions.get(chatId).kill(userId, DisconnectReason.CleaningUp);
} else {
logger.debug("ChatManager:leaveChat - chatId does not exist - chatId: " + chatId +" userId: " + userId);
}
}