diff --git a/xmppserver/src/main/java/org/jivesoftware/openfire/muc/spi/IQAdminHandler.java b/xmppserver/src/main/java/org/jivesoftware/openfire/muc/spi/IQAdminHandler.java index e7e97e5f5e..5ac74020bc 100644 --- a/xmppserver/src/main/java/org/jivesoftware/openfire/muc/spi/IQAdminHandler.java +++ b/xmppserver/src/main/java/org/jivesoftware/openfire/muc/spi/IQAdminHandler.java @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.jivesoftware.openfire.muc.spi; import java.util.ArrayList; @@ -40,15 +39,16 @@ import org.xmpp.packet.Presence; /** - * A handler for the IQ packet with namespace http://jabber.org/protocol/muc#admin. This kind of - * packets are usually sent by room admins. So this handler provides the necessary functionality - * to support administrator requirements such as: managing room members/outcasts/etc., kicking - * occupants and banning users. + * A handler for the IQ packet with namespace + * http://jabber.org/protocol/muc#admin. This kind of packets are usually sent + * by room admins. So this handler provides the necessary functionality to + * support administrator requirements such as: managing room + * members/outcasts/etc., kicking occupants and banning users. * * @author Gaston Dombiak */ public class IQAdminHandler { - + private static final Logger logger = LoggerFactory.getLogger(IQAdminHandler.class); private final LocalMUCRoom room; @@ -64,7 +64,8 @@ public IQAdminHandler(LocalMUCRoom chatroom, PacketRouter packetRouter) { } /** - * Handles the IQ packet sent by an owner or admin of the room. Possible actions are: + * Handles the IQ packet sent by an owner or admin of the room. Possible + * actions are: *