Add support for async completions in 4.15

Marked the SpringBootJavaCompletionProposalComputer as requiresUIThread
= false so that the completions can be run asyncly.
This commit is contained in:
gayanper
2020-01-13 20:47:04 +01:00
parent b12e10e6c6
commit cea770113e

View File

@@ -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">
</javaCompletionProposalComputer>
</extension>