Skip to content

Commit

Permalink
Fix minor bug in DefaultProjectParser#parseGradleFiles()
Browse files Browse the repository at this point in the history
  • Loading branch information
knutwannheden committed Aug 28, 2023
1 parent 95aa8a2 commit 277afca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ private Stream<SourceFile> parseGradleFiles(
sourceFiles = Stream.concat(
sourceFiles,
PlainTextParser.builder().build()
.parse(singleton(settingsGradleFile.toPath()), baseDir, ctx)
.parse(singleton(settingsGradleKtsFile.toPath()), baseDir, ctx)
.map(sourceFile -> {
if(finalGs == null) {
return sourceFile;
Expand Down

0 comments on commit 277afca

Please sign in to comment.