We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c96751a commit 85ac2a0Copy full SHA for 85ac2a0
src/model.ts
@@ -118,10 +118,6 @@ export class Model implements IDisposable {
118
this,
119
this.disposables
120
);
121
- await this.onDidChangeWorkspaceFolders({
122
- added: workspace.workspaceFolders || [],
123
- removed: []
124
- });
125
126
const fsWatcher = workspace.createFileSystemWatcher("**");
127
this.disposables.push(fsWatcher);
@@ -269,7 +265,6 @@ export class Model implements IDisposable {
269
265
}
270
266
271
267
272
- @sequentialize
273
268
public async tryOpenRepository(path: string, level = 0): Promise<void> {
274
if (this.getRepository(path)) {
275
return;
0 commit comments