Remove comments

This commit is contained in:
Charles Allen 2015-07-14 16:21:36 -07:00
parent 92d5c250ab
commit 9400c473a8
1 changed files with 2 additions and 2 deletions

View File

@ -79,12 +79,12 @@ public class TaskQueue
private final Condition managementMayBeNecessary = giant.newCondition();
private final ExecutorService managerExec = Executors.newSingleThreadExecutor(
new ThreadFactoryBuilder()
.setDaemon(false) // Don't use Execs because of this
.setDaemon(false)
.setNameFormat("TaskQueue-Manager").build()
);
private final ScheduledExecutorService storageSyncExec = Executors.newSingleThreadScheduledExecutor(
new ThreadFactoryBuilder()
.setDaemon(false) // Don't use Execs because of this
.setDaemon(false)
.setNameFormat("TaskQueue-StorageSync").build()
);