[BTA] Fix incorrect default value for IncrementalJvmCompilationConfiguration.outputDirs
^KT-61860 In Progress
This commit is contained in:
committed by
Space Team
parent
943d829fa7
commit
dda6b92c13
+1
-1
@@ -53,7 +53,7 @@ internal abstract class JvmIncrementalCompilationConfigurationImpl<P : Increment
|
|||||||
override var rootProjectDir: File? = null,
|
override var rootProjectDir: File? = null,
|
||||||
override var buildDir: File? = null,
|
override var buildDir: File? = null,
|
||||||
override var forcedNonIncrementalMode: Boolean = false,
|
override var forcedNonIncrementalMode: Boolean = false,
|
||||||
override var outputDirs: Set<File> = emptySet(),
|
override var outputDirs: Set<File>? = null,
|
||||||
) : IncrementalJvmCompilationConfiguration<P> {
|
) : IncrementalJvmCompilationConfiguration<P> {
|
||||||
override fun setRootProjectDir(rootProjectDir: File): IncrementalJvmCompilationConfiguration<P> {
|
override fun setRootProjectDir(rootProjectDir: File): IncrementalJvmCompilationConfiguration<P> {
|
||||||
this.rootProjectDir = rootProjectDir
|
this.rootProjectDir = rootProjectDir
|
||||||
|
|||||||
Reference in New Issue
Block a user