Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,8 @@ private static ForkJoinPool createExecutor(int threadCount) {
/* asyncMode */ false, // Last-In-First-Out is important to delete child before parent folders
/* corePoolSize */ 0, //
/* maximumPoolSize */ threadCount, //
/* minimumRunnable */ 0, null, // delete algorithm does not need any
/* minimumRunnable */ 0, //
pool -> true, // if maximumPoolSize would be exceeded, don't throw RejectedExecutionException
/* keepAliveTime */ 1, TimeUnit.MINUTES); // pool terminates 1 thread per
}

Expand Down
Loading