We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ea464e commit 76b3736Copy full SHA for 76b3736
vscode-client/languageclientsmanger.ts
@@ -122,15 +122,11 @@ export class LanguageClientsManager {
122
this.clients.clear();
123
124
for (const client of clients) {
125
- promises.push(client.stop().then((_) => global.gc()));
+ promises.push(client.stop());
126
}
127
128
return Promise.all(promises).then(
129
(r) => {
130
- if (global.gc) {
131
- global.gc();
132
- }
133
-
134
return r.length > 0;
135
},
136
(reason) => {
0 commit comments