Decouple config and netconf subsystems.
[controller.git] / opendaylight / config / config-manager / src / main / java / org / opendaylight / controller / config / manager / impl / osgi / mapping / BindingContextProvider.java
index 8fc0da046843ab36c31f9f78f2798dd031f8ca5d..f3963c92789128f6f647ac347d8bd09ca0655489 100644 (file)
@@ -26,12 +26,12 @@ public class BindingContextProvider implements AutoCloseable {
     }
 
     public synchronized BindingRuntimeContext getBindingContext() {
-        Preconditions.checkState(current != null, "Binding context not yet initialized");
+        Preconditions.checkState(this.current != null, "Binding context not yet initialized");
         return this.current;
     }
 
     @Override
     public synchronized void close() throws Exception {
-        current = null;
+        this.current = null;
     }
 }