Remove comments

This commit is contained in:
Saoud Rizwan 2024-12-25 18:49:38 -08:00
parent 5b1c68337d
commit 2b5ffa1493

View file

@ -45,7 +45,6 @@ class WorkspaceTracker {
}),
)
// Listen for file changes (which could include renames)
this.disposables.push(
watcher.onDidChange(async (uri) => {
await this.addFilePath(uri.fsPath)
@ -53,7 +52,6 @@ class WorkspaceTracker {
}),
)
// Add the watcher itself to disposables
this.disposables.push(watcher)
}