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 {
18
18
}
19
19
20
20
public updateFileList ( ) : void {
21
- console . log ( 'Updating file list' ) ;
22
21
this . moduleFileList = [ ] ;
23
22
this . workspaces . forEach ( ( folder ) => {
24
23
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[] {
76
76
}
77
77
78
78
function 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
-
85
79
if ( fileSystemService . moduleFileList . includes ( filePath ) ) {
86
80
return true ;
87
81
}
You can’t perform that action at this time.
0 commit comments