Bump odlparent 2.0.2 to 2.0.4
[controller.git] / opendaylight / commons / protocol-framework / src / test / java / org / opendaylight / protocol / framework / SimpleSessionNegotiator.java
index 39d5855bc078ba63719b40454e6aa3b277d18e56..e78f2f7fa636f6abdbedc5e99f5257be603fb377 100644 (file)
@@ -12,7 +12,7 @@ import io.netty.util.concurrent.Promise;
 
 public class SimpleSessionNegotiator extends AbstractSessionNegotiator<SimpleMessage, SimpleSession> {
 
 
 public class SimpleSessionNegotiator extends AbstractSessionNegotiator<SimpleMessage, SimpleSession> {
 
-    public SimpleSessionNegotiator(Promise<SimpleSession> promise, Channel channel) {
+    public SimpleSessionNegotiator(final Promise<SimpleSession> promise, final Channel channel) {
         super(promise, channel);
     }
 
         super(promise, channel);
     }
 
@@ -22,7 +22,7 @@ public class SimpleSessionNegotiator extends AbstractSessionNegotiator<SimpleMes
     }
 
     @Override
     }
 
     @Override
-    protected void handleMessage(SimpleMessage msg) throws Exception {
+    protected void handleMessage(final SimpleMessage msg) throws Exception {
         throw new IllegalStateException("This method should never be invoked");
     }
 }
         throw new IllegalStateException("This method should never be invoked");
     }
 }