[Gradle][Minor] CompilerArgumentAware: Remove unnecessary suppress
This commit is contained in:
committed by
Space Team
parent
980d83eccd
commit
62df30134f
+1
-4
@@ -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,
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user