Fix checkstyle reported by odlparent-3.0.0
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / osgi / YangStoreActivator.java
index 0578b42701a18c0275eb1885bac1f0d422db0f85..016c944d80986110db5ee418a45993b4f5742c62 100644 (file)
@@ -43,6 +43,7 @@ public class YangStoreActivator implements BundleActivator {
     private ServiceRegistration<ConfigSubsystemFacadeFactory> osgiRegistrayion;
 
     @Override
+    @SuppressWarnings("checkstyle:hiddenField")
     public void start(final BundleContext context) throws Exception {
         LOG.debug("ConfigPersister starting");
         this.context = context;
@@ -125,6 +126,7 @@ public class YangStoreActivator implements BundleActivator {
     }
 
     @Override
+    @SuppressWarnings("checkstyle:hiddenField")
     public void stop(final BundleContext context) throws Exception {
         if (this.configRegistryLookup != null) {
             this.configRegistryLookup.interrupt();
@@ -147,7 +149,7 @@ public class YangStoreActivator implements BundleActivator {
 
         private final YangStoreService yangStoreService;
 
-        private ConfigRegistryLookupThread(final YangStoreService yangStoreService) {
+        ConfigRegistryLookupThread(final YangStoreService yangStoreService) {
             super("config-registry-lookup");
             this.yangStoreService = yangStoreService;
         }