netty-timer-config: final parameters
[controller.git] / opendaylight / config / netty-timer-config / src / main / java / org / opendaylight / controller / config / yang / netty / timer / HashedWheelTimerModuleFactory.java
index a4049c89e67f6f124dc5bbbb6ff0aa67bc9a9b01..6c337904cc0a3f9a2ffb38ada4dadb82ef31c34a 100644 (file)
@@ -26,8 +26,8 @@ import org.osgi.framework.BundleContext;
 @Deprecated
 public class HashedWheelTimerModuleFactory extends AbstractHashedWheelTimerModuleFactory {
     @Override
-    public HashedWheelTimerModule instantiateModule(String instanceName, DependencyResolver dependencyResolver,
-            HashedWheelTimerModule oldModule, AutoCloseable oldInstance, BundleContext bundleContext) {
+    public HashedWheelTimerModule instantiateModule(final String instanceName, final DependencyResolver dependencyResolver,
+            final HashedWheelTimerModule oldModule, final AutoCloseable oldInstance, final BundleContext bundleContext) {
         HashedWheelTimerModule module = super.instantiateModule(instanceName, dependencyResolver, oldModule,
                 oldInstance, bundleContext);
         module.setBundleContext(bundleContext);
@@ -35,8 +35,8 @@ public class HashedWheelTimerModuleFactory extends AbstractHashedWheelTimerModul
     }
 
     @Override
-    public HashedWheelTimerModule instantiateModule(String instanceName, DependencyResolver dependencyResolver,
-            BundleContext bundleContext) {
+    public HashedWheelTimerModule instantiateModule(final String instanceName, final DependencyResolver dependencyResolver,
+            final BundleContext bundleContext) {
         HashedWheelTimerModule module = super.instantiateModule(instanceName, dependencyResolver, bundleContext);
         module.setBundleContext(bundleContext);
         return module;