mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2025-09-09 18:29:45 +02:00
Add "whitespace after comma" checkstyle rule
This commit is contained in:
parent
db5f6f648c
commit
f7762c5db7
37 changed files with 59 additions and 58 deletions
|
@ -30,8 +30,8 @@ public class SASLGSSAPIMechanism extends SASLJavaXMechanism {
|
|||
public static final String NAME = GSSAPI;
|
||||
|
||||
static {
|
||||
System.setProperty("javax.security.auth.useSubjectCredsOnly","false");
|
||||
System.setProperty("java.security.auth.login.config","gss.conf");
|
||||
System.setProperty("javax.security.auth.useSubjectCredsOnly", "false");
|
||||
System.setProperty("java.security.auth.login.config", "gss.conf");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -47,7 +47,7 @@ public class SASLGSSAPIMechanism extends SASLJavaXMechanism {
|
|||
@Override
|
||||
protected Map<String, String> getSaslProps() {
|
||||
Map<String, String> props = super.getSaslProps();
|
||||
props.put(Sasl.SERVER_AUTH,"TRUE");
|
||||
props.put(Sasl.SERVER_AUTH, "TRUE");
|
||||
return props;
|
||||
}
|
||||
|
||||
|
|
|
@ -145,7 +145,7 @@ public abstract class SASLJavaXMechanism extends SASLMechanism {
|
|||
}
|
||||
}
|
||||
|
||||
protected Map<String,String> getSaslProps() {
|
||||
protected Map<String, String> getSaslProps() {
|
||||
return new HashMap<>();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue