config-persister-impl: final parameters
[controller.git] / opendaylight / config / config-persister-impl / src / test / java / org / opendaylight / controller / config / persist / impl / DummyAdapter.java
index a11129035e2627ab5a2f2bed7678704c5110e899..9984b143db82d0c41cad3709d0c7d5aff7c2d41b 100644 (file)
@@ -20,7 +20,7 @@ public class DummyAdapter implements StorageAdapter, Persister {
     static int persist = 0;
 
     @Override
-    public void persistConfig(ConfigSnapshotHolder holder) throws IOException {
+    public void persistConfig(final ConfigSnapshotHolder holder) throws IOException {
         persist++;
     }
 
@@ -35,7 +35,7 @@ public class DummyAdapter implements StorageAdapter, Persister {
     static int props = 0;
 
     @Override
-    public Persister instantiate(PropertiesProvider propertiesProvider) {
+    public Persister instantiate(final PropertiesProvider propertiesProvider) {
         props++;
         return this;
     }