From cea770113ebd75519d5d3d1451b4c0d6ec32014f Mon Sep 17 00:00:00 2001 From: gayanper Date: Mon, 13 Jan 2020 20:47:04 +0100 Subject: [PATCH] Add support for async completions in 4.15 Marked the SpringBootJavaCompletionProposalComputer as requiresUIThread = false so that the completions can be run asyncly. --- .../org.springframework.tooling.boot.ls/plugin.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclipse-language-servers/org.springframework.tooling.boot.ls/plugin.xml b/eclipse-language-servers/org.springframework.tooling.boot.ls/plugin.xml index ec55a31fa..96ab3ac46 100644 --- a/eclipse-language-servers/org.springframework.tooling.boot.ls/plugin.xml +++ b/eclipse-language-servers/org.springframework.tooling.boot.ls/plugin.xml @@ -63,7 +63,8 @@ activate="true" categoryId="org.eclipse.jdt.ui.defaultProposalCategory" class="org.springframework.tooling.boot.ls.jdt.SpringBootJavaCompletionProposalComputer" - needsSortingAfterFiltering="false"> + needsSortingAfterFiltering="false" + requiresUIThread="false">