File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
buildSrc/src/main/java/com/google/firebase/gradle/plugins Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,7 @@ abstract class DackkaPlugin : Plugin<Project> {
76
76
if (name == " release" ) {
77
77
val isKotlin = project.plugins.hasPlugin(" kotlin-android" )
78
78
79
- val classpath =
80
- runtimeConfiguration.getJars() + project.javadocConfig.getJars() + bootClasspath
79
+ val classpath = runtimeConfiguration.getJars() + project.javadocConfig.getJars() + bootClasspath
81
80
82
81
val sourcesForJava = sourceSets.flatMap {
83
82
it.javaDirectories.map { it.absoluteFile }
@@ -93,10 +92,8 @@ abstract class DackkaPlugin : Plugin<Project> {
93
92
val sourcesForKotlin = emptyList<File >()
94
93
val packageLists = fetchPackageLists(project)
95
94
96
- val excludedFiles =
97
- if (! isKotlin) projectSpecificSuppressedFiles(project) else emptyList()
98
- val fixedJavaSources =
99
- if (! isKotlin) listOf (project.docStubs) else sourcesForJava
95
+ val excludedFiles = if (! isKotlin) projectSpecificSuppressedFiles(project) else emptyList()
96
+ val fixedJavaSources = if (! isKotlin) listOf (project.docStubs) else sourcesForJava
100
97
101
98
javaSources.set(fixedJavaSources)
102
99
suppressedFiles.set(excludedFiles)
You can’t perform that action at this time.
0 commit comments