1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-12-17 02:21:08 +01:00

More checkstyle whitespace related checks

This commit is contained in:
Florian Schmaus 2017-05-23 16:45:04 +02:00
parent 847890b037
commit ce1cddc722
140 changed files with 583 additions and 512 deletions

View file

@ -112,10 +112,10 @@ public class Occupant {
@Override
public boolean equals(Object obj) {
if(!(obj instanceof Occupant)) {
if (!(obj instanceof Occupant)) {
return false;
}
Occupant occupant = (Occupant)obj;
Occupant occupant = (Occupant) obj;
return jid.equals(occupant.jid);
}

View file

@ -247,7 +247,7 @@ public class MUCUser implements ExtensionElement {
* @author Gaston Dombiak
*/
public static class Invite implements NamedElement {
public static final String ELEMENT ="invite";
public static final String ELEMENT = "invite";
private final String reason;