1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-12-18 17:01:08 +01: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

@ -293,7 +293,7 @@ public class MultipleRecipientManager {
* (i.e. cannot change the TO address of a queues stanza(/packet) to be sent) then this class was
* created to keep the XML stanza to send.
*/
private static class PacketCopy extends Stanza {
private static final class PacketCopy extends Stanza {
private final CharSequence text;
@ -303,7 +303,7 @@ public class MultipleRecipientManager {
*
* @param text the whole text of the stanza(/packet) to send
*/
public PacketCopy(CharSequence text) {
private PacketCopy(CharSequence text) {
this.text = text;
}