1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 17:19:39 +02:00

Enable RedundantModifier checkstyle check

This commit is contained in:
Florian Schmaus 2018-03-28 14:02:21 +02:00
parent 193688e553
commit b5209f4701
36 changed files with 86 additions and 85 deletions

View file

@ -133,7 +133,7 @@ public class RoomTransfer implements ExtensionElement {
/**
* Type of entity being invited to a groupchat support session.
*/
public static enum Type {
public enum Type {
/**
* A user is being invited to a groupchat support session. The user could be another agent
* or just a regular XMPP user.

View file

@ -564,12 +564,12 @@ public class Workgroup {
/**
* IQ stanza(/packet) to request joining the workgroup queue.
*/
private class JoinQueuePacket extends IQ {
private final class JoinQueuePacket extends IQ {
private final Jid userID;
private final DataForm form;
public JoinQueuePacket(Jid workgroup, Form answerForm, Jid userID) {
private JoinQueuePacket(Jid workgroup, Form answerForm, Jid userID) {
super("join-queue", "http://jabber.org/protocol/workgroup");
this.userID = userID;