We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 161815b commit 6a9fe1dCopy full SHA for 6a9fe1d
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler.java
@@ -78,7 +78,7 @@
78
79
public class CodeActionHandler {
80
public static final ResponseStore<Either<ChangeCorrectionProposalCore, CodeActionProposal>> codeActionStore
81
- = new ResponseStore<>(ForkJoinPool.commonPool().getParallelism());
+ = new ResponseStore<>(Math.max(ForkJoinPool.commonPool().getParallelism(), 8));
82
public static final String COMMAND_ID_APPLY_EDIT = "java.apply.workspaceEdit";
83
84
public static CodeActionOptions createOptions(PreferenceManager preferenceManager) {
0 commit comments