[Gradle][Minor] CompilerArgumentAware: Remove unnecessary suppress

This commit is contained in:
Sebastian Sellmair
2023-04-12 22:20:57 +02:00
committed by Space Team
parent 980d83eccd
commit 62df30134f
@@ -35,19 +35,16 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinCompilerArgumentsProducer.Argume
interface CompilerArgumentAware<T : CommonToolArguments> : KotlinCompilerArgumentsProducer {
@Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR)
@Suppress("DEPRECATION")
@get:Internal
val serializedCompilerArguments: List<String>
get() = convertArgumentsToStringList(prepareCompilerArguments())
@Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR)
@Suppress("DEPRECATION")
@get:Internal
val serializedCompilerArgumentsIgnoreClasspathIssues: List<String>
get() = convertArgumentsToStringList(prepareCompilerArguments(ignoreClasspathResolutionErrors = true))
@Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR)
@Suppress("DEPRECATION")
@get:Internal
val defaultSerializedCompilerArguments: List<String>
get() = createCompilerArguments(
@@ -85,4 +82,4 @@ private val includedArgumentTypes = setOf(
ArgumentType.Primitive,
ArgumentType.PluginClasspath,
ArgumentType.DependencyClasspath,
)
)