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> {
124
124
project.afterEvaluate {
125
125
if (weShouldPublish(this )) {
126
126
val kdocOnly = publishKotlindocOnly(this )
127
- val generateDocumentation = registerGenerateDackkaDocumentationTask(
128
- project, kdocOnly
129
- )
127
+ val generateDocumentation = registerGenerateDackkaDocumentationTask(project, kdocOnly)
130
128
131
129
val outputDir = generateDocumentation.flatMap { it.outputDirectory }
132
130
@@ -179,7 +177,8 @@ abstract class DackkaPlugin : Plugin<Project> {
179
177
}
180
178
181
179
private fun registerGenerateDackkaDocumentationTask (
182
- project : Project , kotlindocOnly : Boolean
180
+ project : Project ,
181
+ kotlindocOnly : Boolean ,
183
182
): TaskProvider <GenerateDocumentationTask > =
184
183
project.tasks.register<GenerateDocumentationTask >(" generateDackkaDocumentation" ) {
185
184
this .kotlindocOnly.set(kotlindocOnly)
You can’t perform that action at this time.
0 commit comments