Fix checkstyle violations in sal-inmemory-datastore
[controller.git] / opendaylight / md-sal / sal-inmemory-datastore / src / test / java / org / opendaylight / controller / md / sal / dom / store / impl / TestDCLExecutorService.java
index a01933c295bea088f5f86e7f0ad417f4d4e2be58..cbeff79d129a84ecd60cb3faf4acea2bff6922f7 100644 (file)
@@ -13,7 +13,7 @@ import com.google.common.util.concurrent.MoreExecutors;
 import java.util.concurrent.ExecutorService;
 
 /**
- * A forwarding Executor used by unit tests for DataChangeListener notifications
+ * A forwarding Executor used by unit tests for DataChangeListener notifications.
  *
  * @author Thomas Pantelis
  */
@@ -26,7 +26,7 @@ public class TestDCLExecutorService extends ForwardingExecutorService {
     private final ExecutorService postSetupExecutor;
 
 
-    public TestDCLExecutorService( final ExecutorService postSetupExecutor ) {
+    public TestDCLExecutorService(final ExecutorService postSetupExecutor) {
         this.postSetupExecutor = postSetupExecutor;
     }
 
@@ -39,4 +39,4 @@ public class TestDCLExecutorService extends ForwardingExecutorService {
         // Test setup complete - switch to the real executor.
         currentExecutor = postSetupExecutor;
     }
-}
\ No newline at end of file
+}