Fix checkstyle issues to enforce it
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / testingservices / threadpool / TestingFixedThreadPool.java
index 0f4f00f0baf223c40239e4379b2a6529c10c9a8f..35413a1b1fcc23541cf60b719d1386a5ece20324 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2013, 2017 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -26,22 +26,22 @@ public class TestingFixedThreadPool implements TestingThreadPoolIfc, Closeable,
     private final String uniqueName;
 
     public static void cleanUp() {
-        for (ExecutorService executorService : allExecutors) {
+        for (ExecutorService executorService : ALL_EXECUTORS) {
             executorService.shutdown();
         }
-        allExecutors.clear();
+        ALL_EXECUTORS.clear();
     }
 
     // for verification purposes:
-    public static final List<ThreadPoolExecutor> allExecutors = Collections
+    public static final List<ThreadPoolExecutor> ALL_EXECUTORS = Collections
             .synchronizedList(Lists.<ThreadPoolExecutor>newLinkedList());
 
-    public TestingFixedThreadPool(int threadCount, String uniqueName) {
+    public TestingFixedThreadPool(final int threadCount, final String uniqueName) {
         checkNotNull(uniqueName);
         this.uniqueName = uniqueName;
         executorService = (ThreadPoolExecutor) Executors
                 .newFixedThreadPool(threadCount);
-        allExecutors.add(executorService);
+        ALL_EXECUTORS.add(executorService);
     }
 
     @Override
@@ -52,7 +52,7 @@ public class TestingFixedThreadPool implements TestingThreadPoolIfc, Closeable,
     @Override
     public void close() throws IOException {
         executorService.shutdown();
-        allExecutors.remove(executorService);
+        ALL_EXECUTORS.remove(executorService);
 
     }
 
@@ -66,9 +66,8 @@ public class TestingFixedThreadPool implements TestingThreadPoolIfc, Closeable,
     }
 
     @Override
-    public void setMaximumNumberOfThreads(int activeCount) {
+    public void setMaximumNumberOfThreads(final int activeCount) {
         checkArgument(activeCount > 0);
         executorService.setMaximumPoolSize(activeCount);
     }
-
 }