File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ class FileSystemService {
1818 }
1919
2020 public updateFileList ( ) : void {
21- console . log ( 'Updating file list' ) ;
2221 this . moduleFileList = [ ] ;
2322 this . workspaces . forEach ( ( folder ) => {
2423 const workspaceUri = URI . parse ( folder . uri ) ;
Original file line number Diff line number Diff line change @@ -76,12 +76,6 @@ export function validateFilePaths(textDocument: TextDocument): Diagnostic[] {
7676}
7777
7878function checkIfPathExists ( filePath : string ) : boolean {
79- console . log ( 'checking if file exists: ' , filePath ) ;
80- console . log (
81- 'fileSystemService.moduleFileList' ,
82- fileSystemService . moduleFileList . slice ( 0 , 5 )
83- ) ;
84-
8579 if ( fileSystemService . moduleFileList . includes ( filePath ) ) {
8680 return true ;
8781 }
You can’t perform that action at this time.
0 commit comments