Fix some sonar/checkstyle issues
[netconf.git] / netconf / callhome-protocol / src / main / java / org / opendaylight / netconf / callhome / protocol / ReverseSshChannelInitializer.java
index a4fb71a17ddab6ded4e8d97a45ab007fcace98fd..09b88a944aeac94facb049bea235d0ed1c78ac87 100644 (file)
@@ -16,7 +16,7 @@ import org.opendaylight.netconf.client.NetconfClientSessionNegotiatorFactory;
 import org.opendaylight.netconf.nettyutil.AbstractChannelInitializer;
 import org.opendaylight.protocol.framework.SessionListenerFactory;
 
-class ReverseSshChannelInitializer extends AbstractChannelInitializer<NetconfClientSession>
+final class ReverseSshChannelInitializer extends AbstractChannelInitializer<NetconfClientSession>
         implements SessionListenerFactory<NetconfClientSessionListener> {
 
     private final NetconfClientSessionNegotiatorFactory negotiatorFactory;
@@ -24,7 +24,6 @@ class ReverseSshChannelInitializer extends AbstractChannelInitializer<NetconfCli
 
     private ReverseSshChannelInitializer(NetconfClientSessionNegotiatorFactory negotiatorFactory,
                                          NetconfClientSessionListener sessionListener) {
-        super();
         this.negotiatorFactory = negotiatorFactory;
         this.sessionListener = sessionListener;
     }