From 014bb0214f1bbc50e7cabc3659b1e6f2af6e1ec7 Mon Sep 17 00:00:00 2001 From: Sebastian Sellmair Date: Tue, 4 Apr 2023 22:09:33 +0200 Subject: [PATCH] [Gradle][Minor] Kotlin2JsCompile: Make contributeAdditionalCompilerArguments protected KTIJ-24976 --- .../org/jetbrains/kotlin/gradle/tasks/Kotlin2JsCompile.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/tasks/Kotlin2JsCompile.kt b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/tasks/Kotlin2JsCompile.kt index 73dc9a50446..60cca530ff7 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/tasks/Kotlin2JsCompile.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/tasks/Kotlin2JsCompile.kt @@ -292,7 +292,7 @@ abstract class Kotlin2JsCompile @Inject constructor( } - open fun contributeAdditionalCompilerArguments(context: ContributeCompilerArgumentsContext) = Unit + protected open fun contributeAdditionalCompilerArguments(context: ContributeCompilerArgumentsContext) = Unit override fun callCompilerAsync( args: K2JSCompilerArguments,