Skip to content

Commit e3d9d92

Browse files
committed
JavaScript: Fix duplicate comment
1 parent f08c2fa commit e3d9d92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/extractor/src/com/semmle/js/extractor/AutoBuild.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ private CompletableFuture<?> extractSource() throws IOException {
747747
.filter(p -> !isFileTooLarge(p))
748748
.sorted(PATH_ORDERING)
749749
.collect(Collectors.toCollection(() -> new LinkedHashSet<>()));
750-
// exclude files in output directories as configured in tsconfig.json
750+
// gather all output directories specified in tsconfig.json files
751751
final List<Path> outDirs = new ArrayList<>();
752752
for (Path cfg : tsconfigFiles) {
753753
try {

0 commit comments

Comments
 (0)