Remove yang-test
[controller.git] / opendaylight / config / config-persister-impl / src / main / java / org / opendaylight / controller / config / persist / impl / PropertiesProviderAdapterImpl.java
index 2ac059bb09f01e4902a2e3cb42fcd1e6f7c497cc..acef56ff1a4e611ca356b670df5fec03b7eb216e 100644 (file)
@@ -13,13 +13,13 @@ public class PropertiesProviderAdapterImpl implements PropertiesProvider {
     private final PropertiesProvider inner;
     private final String index;
 
-    public PropertiesProviderAdapterImpl(PropertiesProvider inner, String index) {
+    public PropertiesProviderAdapterImpl(final PropertiesProvider inner, final String index) {
         this.inner = inner;
         this.index = index;
     }
 
     @Override
-    public String getProperty(String key) {
+    public String getProperty(final String key) {
         String fullKey = getFullKeyForReporting(key);
         return inner.getPropertyWithoutPrefix(fullKey);
     }
@@ -29,13 +29,13 @@ public class PropertiesProviderAdapterImpl implements PropertiesProvider {
     }
 
     @Override
-    public String getPropertyWithoutPrefix(String fullKey) {
+    public String getPropertyWithoutPrefix(final String fullKey) {
         return inner.getPropertyWithoutPrefix(fullKey);
     }
 
 
     @Override
-    public String getFullKeyForReporting(String key) {
+    public String getFullKeyForReporting(final String key) {
         return getPrefix()  + "." + key;
     }
 }