Removed undocumented setting usage

This commit is contained in:
Matt Bierner
2019-11-11 14:24:48 -08:00
parent 8904a3cbce
commit 2ec3bc4fd0

View File

@@ -154,7 +154,7 @@ class BufferSynchronizer {
}
private get supportsBatching(): boolean {
return this.client.apiVersion.gte(API.v340) && vscode.workspace.getConfiguration('typescript', null).get<boolean>('useBatchedBufferSync', true);
return this.client.apiVersion.gte(API.v340);
}
private updatePending(resource: vscode.Uri, f: (pending: ResourceMap<CloseOperation | OpenOperation | ChangeOperation>) => void): void {