Refactor persister.
[controller.git] / opendaylight / netconf / config-persister-impl / src / main / java / org / opendaylight / controller / netconf / persist / impl / NoOpStorageAdapter.java
index cd604312f4d0318fa2f55ed637e00c01b392e206..305908ae8a79580733a99b71870bcc5f9c707cc4 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.controller.netconf.persist.impl;
 
 import com.google.common.base.Optional;
 import org.opendaylight.controller.config.persist.api.storage.StorageAdapter;
-import org.osgi.framework.BundleContext;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -20,8 +19,8 @@ public class NoOpStorageAdapter implements StorageAdapter {
     private static final Logger logger = LoggerFactory.getLogger(NoOpStorageAdapter.class);
 
     @Override
-    public void setProperties(BundleContext bundleContext) {
-        logger.debug("setProperties called with {}", bundleContext);
+    public void setProperties(PropertiesProvider propertiesProvider) {
+        logger.debug("setProperties called with {}", propertiesProvider);
     }
 
     @Override