Merge "Fix junit dependencies in poms. Reuse existing from parent, add missing ones."
[bgpcep.git] / pcep / testtool / src / main / java / org / opendaylight / protocol / pcep / testtool / TestingSessionListener.java
index 1e60189650575a281c4d7c1c121a7374764565b1..f08a295dffcb2313bda29a7e665b36c59ba771a3 100644 (file)
@@ -39,14 +39,12 @@ public class TestingSessionListener implements PCEPSessionListener {
        public void onSessionUp(final PCEPSession session) {
                logger.debug("Session up.");
                this.up = true;
-               // this.notifyAll();
        }
 
        @Override
        public void onSessionDown(final PCEPSession session, final Exception e) {
                logger.debug("Session down. Cause : {} or {}", e);
                this.up = false;
-               // this.notifyAll();
        }
 
        @Override