[Gradle] Kotlin2JsCompile: Remove old createCompilerArgs

KTIJ-24976
This commit is contained in:
Sebastian Sellmair
2023-04-05 17:03:49 +02:00
committed by Space Team
parent ca84505376
commit 6c2087983c
@@ -27,7 +27,6 @@ import org.jetbrains.kotlin.gradle.internal.tasks.allOutputFiles
import org.jetbrains.kotlin.gradle.logging.GradleErrorMessageCollector
import org.jetbrains.kotlin.gradle.logging.GradlePrintingMessageCollector
import org.jetbrains.kotlin.gradle.logging.kotlinDebug
import org.jetbrains.kotlin.gradle.plugin.KotlinCompilerArgumentsProducer
import org.jetbrains.kotlin.gradle.plugin.KotlinCompilerArgumentsProducer.ContributeCompilerArgumentsContext
import org.jetbrains.kotlin.gradle.plugin.KotlinCompilerArgumentsProducer.CreateCompilerArgumentsContext
import org.jetbrains.kotlin.gradle.plugin.KotlinCompilerArgumentsProducer.CreateCompilerArgumentsContext.Companion.create
@@ -127,10 +126,6 @@ abstract class Kotlin2JsCompile @Inject constructor(
@get:Nested
override val multiplatformStructure: K2MultiplatformStructure = objectFactory.newInstance()
@Suppress("OVERRIDE_DEPRECATION")
override fun createCompilerArgs(): K2JSCompilerArguments =
K2JSCompilerArguments()
override fun createCompilerArguments(context: CreateCompilerArgumentsContext) = context.create<K2JSCompilerArguments> {
primitive { args ->
args.multiPlatform = multiPlatformEnabled.get()