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