Sonar false positive polishing

Reported on next line.
This commit is contained in:
Gary Russell
2018-12-14 22:26:23 -05:00
parent 7efe79f457
commit 355479f935

View File

@@ -393,8 +393,8 @@ public class CachingClientConnectionFactory extends AbstractClientConnectionFact
private final AtomicBoolean released = new AtomicBoolean();
private CachedConnection(TcpConnectionSupport connection, // NOSONAR false positive, not marked @Nullable
@Nullable TcpListener tcpListener) {
private CachedConnection(TcpConnectionSupport connection,
@Nullable TcpListener tcpListener) { // NOSONAR false positive, connection not marked @Nullable
super.setTheConnection(connection);
registerListener(tcpListener);