Drop unneeded generic type specifiers
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / concurrent / FastThreadPoolExecutor.java
index 77a5846419e9db142c172d4dd30782a2827dbd37..f46dcbcd5cc75f64b36151ebcab847b7bdeacc8d 100644 (file)
@@ -68,7 +68,7 @@ public class FastThreadPoolExecutor extends ThreadPoolExecutor {
         // reached, subsequent tasks will be queued. If the queue is full, tasks will be rejected.
 
         super( maximumPoolSize, maximumPoolSize, keepAliveTime, unit,
-               new TrackingLinkedBlockingQueue<Runnable>( maximumQueueSize ) );
+                new TrackingLinkedBlockingQueue<>(maximumQueueSize) );
 
         this.threadPrefix = threadPrefix;
         this.maximumQueueSize = maximumQueueSize;