X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fcommons%2Fprotocol-framework%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fprotocol%2Fframework%2FSimpleSessionListener.java;h=8db14f7f5a41288fb48aec885cd6fe7fac338d95;hp=7004ee61417d3af11f091e223419ba52a36ed89d;hb=f6d4d8759fcce4d35f38f5a5a056acf1d3e0b4b2;hpb=b369c0185a99952c3609aad40ebeba3e4be8c5b2 diff --git a/opendaylight/commons/protocol-framework/src/test/java/org/opendaylight/protocol/framework/SimpleSessionListener.java b/opendaylight/commons/protocol-framework/src/test/java/org/opendaylight/protocol/framework/SimpleSessionListener.java index 7004ee6141..8db14f7f5a 100644 --- a/opendaylight/commons/protocol-framework/src/test/java/org/opendaylight/protocol/framework/SimpleSessionListener.java +++ b/opendaylight/commons/protocol-framework/src/test/java/org/opendaylight/protocol/framework/SimpleSessionListener.java @@ -17,9 +17,9 @@ import org.slf4j.LoggerFactory; * Simple Session Listener that is notified about messages and changes in the session. */ public class SimpleSessionListener implements SessionListener { - private static final Logger logger = LoggerFactory.getLogger(SimpleSessionListener.class); + private static final Logger LOG = LoggerFactory.getLogger(SimpleSessionListener.class); - public List messages = new ArrayList(); + public List messages = new ArrayList<>(); public boolean up = false; @@ -27,7 +27,7 @@ public class SimpleSessionListener implements SessionListener