diff --git a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt index fd712efab18..4c00c4e6a30 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt @@ -35,19 +35,16 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinCompilerArgumentsProducer.Argume interface CompilerArgumentAware : KotlinCompilerArgumentsProducer { @Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR) - @Suppress("DEPRECATION") @get:Internal val serializedCompilerArguments: List get() = convertArgumentsToStringList(prepareCompilerArguments()) @Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR) - @Suppress("DEPRECATION") @get:Internal val serializedCompilerArgumentsIgnoreClasspathIssues: List get() = convertArgumentsToStringList(prepareCompilerArguments(ignoreClasspathResolutionErrors = true)) @Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR) - @Suppress("DEPRECATION") @get:Internal val defaultSerializedCompilerArguments: List get() = createCompilerArguments( @@ -85,4 +82,4 @@ private val includedArgumentTypes = setOf( ArgumentType.Primitive, ArgumentType.PluginClasspath, ArgumentType.DependencyClasspath, -) \ No newline at end of file +)