mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-09 17:19:39 +02:00
Add FinalClass checkstyle check
And mark affected classes final.
This commit is contained in:
parent
5ae1fbd25a
commit
b4694ec152
72 changed files with 80 additions and 79 deletions
|
@ -33,7 +33,7 @@ import org.jxmpp.jid.DomainBareJid;
|
|||
import org.jxmpp.jid.impl.JidCreate;
|
||||
import org.jxmpp.stringprep.XmppStringprepException;
|
||||
|
||||
public class Configuration {
|
||||
public final class Configuration {
|
||||
|
||||
public final DomainBareJid service;
|
||||
|
||||
|
@ -92,7 +92,7 @@ public class Configuration {
|
|||
return new Builder();
|
||||
}
|
||||
|
||||
public static class Builder {
|
||||
public static final class Builder {
|
||||
|
||||
private DomainBareJid service;
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ public class IntTestUtil {
|
|||
return new UsernameAndPassword(username, password);
|
||||
}
|
||||
|
||||
public static class UsernameAndPassword {
|
||||
public static final class UsernameAndPassword {
|
||||
public final String username;
|
||||
public final String password;
|
||||
|
||||
|
|
|
@ -595,7 +595,7 @@ public class SmackIntegrationTestFramework {
|
|||
return (Exception) e;
|
||||
}
|
||||
|
||||
public static class TestRunResult {
|
||||
public static final class TestRunResult {
|
||||
public final String testRunId = StringUtils.randomString(5);
|
||||
private final List<SuccessfulTest> successfulTests = Collections.synchronizedList(new LinkedList<SuccessfulTest>());
|
||||
private final List<FailedTest> failedIntegrationTests = Collections.synchronizedList(new LinkedList<FailedTest>());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue