diff options
author | George Fraser <george@fivetran.com> | 2019-01-06 11:59:35 -0800 |
---|---|---|
committer | George Fraser <george@fivetran.com> | 2019-01-06 11:59:35 -0800 |
commit | 97cf157712cb221c7fa27529dcc563916f7ab293 (patch) | |
tree | c93818dd976f88e72ed321f3ea245a00ca1f0c86 /lib | |
parent | c4ad50a74ac99ea48424be120d1c369b9f1d24e0 (diff) | |
download | java-language-server-97cf157712cb221c7fa27529dcc563916f7ab293.zip |
Re-use reference counts
Diffstat (limited to 'lib')
-rw-r--r-- | lib/extension.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/extension.ts b/lib/extension.ts index 2be8a9e..e739434 100644 --- a/lib/extension.ts +++ b/lib/extension.ts @@ -6,6 +6,7 @@ import * as FS from "fs"; import { window, workspace, ExtensionContext, commands, tasks, Task, TaskExecution, ShellExecution, Uri, TaskDefinition, languages, IndentAction, Progress, ProgressLocation } from 'vscode'; import {LanguageClient, LanguageClientOptions, ServerOptions, NotificationType} from "vscode-languageclient"; +// If we want to profile using VisualVM, we have to run the language server using regular java, not jlink const visualVm = false; /** Called when extension is activated */ |