Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerbwong committed Jul 12, 2024
1 parent bddc54d commit 5e91ae9
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,14 @@ internal abstract class MetalavaGenerateSignatureTask @Inject constructor(
}

val args: List<String> = listOf(
"${signature.get()}", filenameOverride ?: filename.get(),
"--java-source", "${javaSourceLevel.get()}",
"--classpath", fullClasspath,
"--source-path", sourcePaths,
"${signature.get()}",
filenameOverride ?: filename.get(),
"--java-source",
"${javaSourceLevel.get()}",
"--classpath",
fullClasspath,
"--source-path",
sourcePaths,
) + keepFileFlags + createCommonArgs()
executeMetalavaWork(args, awaitWork)
}
Expand Down

0 comments on commit 5e91ae9

Please sign in to comment.