Fix the javadoc of the WorkQueue.createQueue method

Change-Id: I03d7b3067db2de20376560bb712c1fa28fecf502
This commit is contained in:
Saša Živkov
2015-05-13 11:29:11 +02:00
parent 5353b420cc
commit 781f1311bd

View File

@@ -110,8 +110,8 @@ public class WorkQueue {
return defaultQueue;
}
/** Create a new executor queue with one thread. */
public Executor createQueue(final int poolsize, final String prefix) {
/** Create a new executor queue. */
public Executor createQueue(int poolsize, String prefix) {
final Executor r = new Executor(poolsize, prefix);
r.setContinueExistingPeriodicTasksAfterShutdownPolicy(false);
r.setExecuteExistingDelayedTasksAfterShutdownPolicy(false);