1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 00:59: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

@ -934,7 +934,7 @@ public class EnhancedDebugger extends SmackDebugger {
* The whole text to send must be passed to the constructor. This implies that the client of
* this class is responsible for sending a valid text to the constructor.
*/
private static class AdHocPacket extends Stanza {
private static final class AdHocPacket extends Stanza {
private final String text;
@ -944,7 +944,7 @@ public class EnhancedDebugger extends SmackDebugger {
*
* @param text the whole text of the stanza(/packet) to send
*/
public AdHocPacket(String text) {
private AdHocPacket(String text) {
this.text = text;
}