Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/lsp
diff options
context:
space:
mode:
authorAlexander Fedorov2020-08-26 19:12:59 +0000
committerAlexander Fedorov2020-08-26 19:12:59 +0000
commit0349a8a85fdf7c3941b674367142dc150d398112 (patch)
tree2bc6557b6ef37ce577f3a6eb8f79cccb6bf36b7e /lsp
parentb87c2a793dd6c79a1cd431088912bc8bdc8cd8f9 (diff)
downloadorg.eclipse.cdt-0349a8a85fdf7c3941b674367142dc150d398112.tar.gz
org.eclipse.cdt-0349a8a85fdf7c3941b674367142dc150d398112.tar.xz
org.eclipse.cdt-0349a8a85fdf7c3941b674367142dc150d398112.zip
Bug 566421 - CDT LSP should declare server as singleton
Mark "org.eclipse.cdt.lsp.core" contribution as singleton Change-Id: If39a3b769f11d0cfda94857cc4d5b7bc6fff0df5 Signed-off-by: Alexander Fedorov <alexander.fedorov@arsysop.ru>
Diffstat (limited to 'lsp')
-rw-r--r--lsp/org.eclipse.cdt.lsp.core/plugin.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/lsp/org.eclipse.cdt.lsp.core/plugin.xml b/lsp/org.eclipse.cdt.lsp.core/plugin.xml
index 42c4a970155..914b0463a89 100644
--- a/lsp/org.eclipse.cdt.lsp.core/plugin.xml
+++ b/lsp/org.eclipse.cdt.lsp.core/plugin.xml
@@ -30,7 +30,8 @@
class="org.eclipse.cdt.lsp.core.CPPStreamConnectionProvider"
id="org.eclipse.cdt.lsp.core"
label="%server.label"
- launcherBuilder="org.eclipse.cdt.lsp.internal.core.DelegatingLauncherBuilder">
+ launcherBuilder="org.eclipse.cdt.lsp.internal.core.DelegatingLauncherBuilder"
+ singleton="true">
</server>
<contentTypeMapping
contentType="org.eclipse.cdt.lsp.core"

Back to the top