config-manager: final parameters
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / testingservices / scheduledthreadpool / TestingScheduledThreadPoolImpl.java
index 0e60db899ded465a14dd3ba6aa8f810baae60fb1..9c0f56b1206c65b854b658b844b0a6a1224feb43 100644 (file)
@@ -28,7 +28,7 @@ public class TestingScheduledThreadPoolImpl implements TestingThreadPoolIfc,
             .newLinkedList();
 
     public TestingScheduledThreadPoolImpl(
-            RootRuntimeBeanRegistrator runtimeBeanRegistrator, int corePoolSize) {
+            final RootRuntimeBeanRegistrator runtimeBeanRegistrator, final int corePoolSize) {
         this.runtimeBeanRegistrator = runtimeBeanRegistrator;
         executor = new ScheduledThreadPoolExecutor(corePoolSize);
         allExecutors.add(executor);