File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
plugins/src/main/java/com/google/firebase/gradle/plugins Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -124,9 +124,7 @@ abstract class DackkaPlugin : Plugin<Project> {
124124 project.afterEvaluate {
125125 if (weShouldPublish(this )) {
126126 val kdocOnly = publishKotlindocOnly(this )
127- val generateDocumentation = registerGenerateDackkaDocumentationTask(
128- project, kdocOnly
129- )
127+ val generateDocumentation = registerGenerateDackkaDocumentationTask(project, kdocOnly)
130128
131129 val outputDir = generateDocumentation.flatMap { it.outputDirectory }
132130
@@ -179,7 +177,8 @@ abstract class DackkaPlugin : Plugin<Project> {
179177 }
180178
181179 private fun registerGenerateDackkaDocumentationTask (
182- project : Project , kotlindocOnly : Boolean
180+ project : Project ,
181+ kotlindocOnly : Boolean ,
183182 ): TaskProvider <GenerateDocumentationTask > =
184183 project.tasks.register<GenerateDocumentationTask >(" generateDackkaDocumentation" ) {
185184 this .kotlindocOnly.set(kotlindocOnly)
You can’t perform that action at this time.
0 commit comments