Skip to content

Commit fc2af89

Browse files
Fix a shadowed name.
1 parent ab50637 commit fc2af89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/common/platform/fileSystem.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,8 @@ export class FileSystem extends FileSystemUtils implements IFileSystem {
374374
// Do not import vscode directly, as this isn't available in the Debugger Context.
375375
// If stat is used in debugger context, it will fail, however theres a separate PR that will resolve this.
376376
// tslint:disable-next-line: no-require-imports
377-
const vscode = require('vscode');
378-
return vscode.workspace.fs.stat(vscode.Uri.file(filePath));
377+
const vsc = require('vscode');
378+
return vsc.workspace.fs.stat(vscode.Uri.file(filePath));
379379
}
380380

381381
public async readFile(filename: string): Promise<string> {

0 commit comments

Comments
 (0)