This commit is contained in:
Sandeep Somavarapu 2024-06-17 10:58:13 +02:00 committed by GitHub
parent ed4de0582a
commit a7af3c0e6d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -132,7 +132,7 @@ class ExtHostWorkspaceImpl extends Workspace {
constructor(id: string, private _name: string, folders: vscode.WorkspaceFolder[], transient: boolean, configuration: URI | null, private _isUntitled: boolean, ignorePathCasing: (key: URI) => boolean) {
super(id, folders.map(f => new WorkspaceFolder(f)), transient, configuration, ignorePathCasing);
this._structure = TernarySearchTree.forUris<vscode.WorkspaceFolder>(ignorePathCasing);
this._structure = TernarySearchTree.forUris<vscode.WorkspaceFolder>(ignorePathCasing, () => true);
// setup the workspace folder data structure
folders.forEach(folder => {