Sonar - protected fields

This commit is contained in:
Gary Russell
2019-05-01 16:18:58 -04:00
committed by Artem Bilan
parent 37e49a23f4
commit 0d6faa2e34
58 changed files with 278 additions and 261 deletions

View File

@@ -47,7 +47,7 @@ public abstract class RemoteFileInboundChannelAdapterSpec<F, S extends RemoteFil
extends MessageSourceSpec<S, MS>
implements ComponentsRegistration {
protected final AbstractInboundFileSynchronizer<F> synchronizer;
protected final AbstractInboundFileSynchronizer<F> synchronizer; // NOSONAR final
private ExpressionFileListFilter<F> expressionFileListFilter;

View File

@@ -117,9 +117,9 @@ public class RotatingServerAdvice extends AbstractMessageSourceAdvice {
*/
public static class StandardRotationPolicy implements RotationPolicy {
protected final Log logger = LogFactory.getLog(getClass());
protected final Log logger = LogFactory.getLog(getClass()); // NOSONAR final
protected final DelegatingSessionFactory<?> factory;
protected final DelegatingSessionFactory<?> factory; // NOSONAR final
private final List<KeyDirectory> keyDirectories = new ArrayList<>();