Bump odlparent to 6.0.0
[controller.git] / opendaylight / config / threadpool-config-impl / src / main / java / org / opendaylight / controller / config / threadpool / util / NamingThreadPoolFactory.java
index a85c8244e60a0a09fdcc0676f949c8ba16a1ad80..0efa4824aeb1a029f8d1ff301a09320f95f661d4 100644 (file)
@@ -28,6 +28,7 @@ public class NamingThreadPoolFactory implements ThreadFactory, Closeable {
     }
 
     @Override
+    @SuppressWarnings("checkstyle:parameterName")
     public Thread newThread(final Runnable r) {
         return new Thread(group, r, String.format("%s-%d", group.getName(), threadName.incrementAndGet()));
     }