Reverted 1a1fe6d508 to make things workproperly on java5/windows

This commit is contained in:
Kristian Rosenvold 2013-02-27 07:27:43 +01:00
parent 0645eb72fe
commit 80e01fea5b
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ public void execute( Runnable command )
else
{
executor =
new ThreadPoolExecutor( 0, threads, 3, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(),
new ThreadPoolExecutor( threads, threads, 3, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(),
new DaemonThreadCreator() );
}
}