Mechanical code cleanup (sal-dom-xsql)
[controller.git] / opendaylight / md-sal / sal-dom-xsql / src / main / java / org / opendaylight / controller / md / sal / dom / xsql / XSQLThreadPool.java
index ef507345cde04474507392b70961165d621470e9..ab059d9e6480d393f98f8ba3e279dd2fe5c76ec9 100644 (file)
@@ -11,7 +11,7 @@ package org.opendaylight.controller.md.sal.dom.xsql;
 import java.util.LinkedList;
 
 public class XSQLThreadPool {
-    private LinkedList<Runnable> tasks = new LinkedList<Runnable>();
+    private LinkedList<Runnable> tasks = new LinkedList<>();
     private int threadCount = 0;
     private int maxThreadCount = 10;
     private String threadPoolName = "Simple Thread Pool";