Skip to content

Commit

Permalink
Test failing QG
Browse files Browse the repository at this point in the history
  • Loading branch information
sophio-japharidze-sonarsource committed Oct 2, 2024
1 parent cc8accb commit a786e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fileSystem/fileSystemServiceImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class FileSystemServiceImpl implements FileSystemService {
const files = await vscode.workspace.fs.readDirectory(currentDirectory);
for (const [name, type] of files) {
const fullFileUri = vscode.Uri.joinPath(currentDirectory, name);

const a = Object.assign({}, fullFileUri);
if (type === vscode.FileType.File) {
// Call the listeners; Only pass Uri of configScope, not child directories
this.listeners.forEach(listener => listener.onFile(configScopeUri.toString(), name, fullFileUri));
Expand Down

0 comments on commit a786e5c

Please sign in to comment.