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=6ca44d2095f0887508dd32f0174058a627eff4f9;hpb=391180fcde6a7a2336182e346e24a1ff9f754062 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