Use <> operator where possible

Change-Id: I88c51f471f0d901bfd8df4346d653fda62f07a0c
This commit is contained in:
Dave Borowitz
2019-01-02 11:13:02 -08:00
parent 4e4cdfe2ea
commit 7888debe88
15 changed files with 16 additions and 18 deletions

View File

@@ -90,7 +90,7 @@ public class SysExecutorModule extends AbstractModule {
poolSize,
10,
TimeUnit.MINUTES,
new ArrayBlockingQueue<Runnable>(poolSize),
new ArrayBlockingQueue<>(poolSize),
new ThreadFactoryBuilder()
.setNameFormat("ChangeUpdate-%d")
.setDaemon(true)