Commit 565dc500 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Removed debug info.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10476 b35dd754-fafc-0310-a699-88a17e54d16e
parent a98b1b88
......@@ -54,8 +54,6 @@ public class DisconnectUserFromRoom extends AdHocCommand {
Map<String, List<String>> data = sessionData.getData();
Log.debug("Got command "+command.asXML());
// Gets the userjid
String userjid = get(data, "userjid", 0);
......@@ -77,11 +75,6 @@ public class DisconnectUserFromRoom extends AdHocCommand {
JID rjid = new JID(roomjid);
JID ujid = new JID(userjid);
String nickname = ujid.getNode();
Log.debug("userjid = "+userjid);
Log.debug("roomjid = "+roomjid);
Log.debug("nickname = "+nickname);
Log.debug("rjid = "+rjid);
Log.debug("ujid = "+ujid);
MultiUserChatService service = XMPPServer.getInstance().getMultiUserChatManager().getMultiUserChatService(rjid);
if (service != null) {
MUCRoom room = service.getChatRoom(rjid.getNode());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment