Code Clean Up
[bgpcep.git] / bgp / bmp-impl / src / main / java / org / opendaylight / protocol / bmp / impl / app / RouterSessionManager.java
index 900609fd63c023499fd61b65675d31812f6411eb..90eca5e641869609f4c581cc3d03176f6a023a76 100644 (file)
@@ -49,7 +49,7 @@ final class RouterSessionManager implements BmpSessionListenerFactory, AutoClose
 
     private synchronized boolean isSessionExist(final BmpRouter sessionListener) {
         Preconditions.checkNotNull(sessionListener);
-        return sessionListeners.containsKey(Preconditions.checkNotNull(sessionListener.getRouterId()));
+        return this.sessionListeners.containsKey(Preconditions.checkNotNull(sessionListener.getRouterId()));
     }
 
     synchronized boolean addSessionListener(final BmpRouter sessionListener) {
@@ -85,7 +85,7 @@ final class RouterSessionManager implements BmpSessionListenerFactory, AutoClose
     }
 
     RIBExtensionConsumerContext getExtensions() {
-        return extensions;
+        return this.extensions;
     }
 
     BindingCodecTree getCodecTree() {