[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 {
|
interface CompilerArgumentAware<T : CommonToolArguments> : KotlinCompilerArgumentsProducer {
|
||||||
|
|
||||||
@Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR)
|
@Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR)
|
||||||
@Suppress("DEPRECATION")
|
|
||||||
@get:Internal
|
@get:Internal
|
||||||
val serializedCompilerArguments: List<String>
|
val serializedCompilerArguments: List<String>
|
||||||
get() = convertArgumentsToStringList(prepareCompilerArguments())
|
get() = convertArgumentsToStringList(prepareCompilerArguments())
|
||||||
|
|
||||||
@Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR)
|
@Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR)
|
||||||
@Suppress("DEPRECATION")
|
|
||||||
@get:Internal
|
@get:Internal
|
||||||
val serializedCompilerArgumentsIgnoreClasspathIssues: List<String>
|
val serializedCompilerArgumentsIgnoreClasspathIssues: List<String>
|
||||||
get() = convertArgumentsToStringList(prepareCompilerArguments(ignoreClasspathResolutionErrors = true))
|
get() = convertArgumentsToStringList(prepareCompilerArguments(ignoreClasspathResolutionErrors = true))
|
||||||
|
|
||||||
@Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR)
|
@Deprecated("Replaced by KotlinCompilerArgumentsProducer", level = DeprecationLevel.ERROR)
|
||||||
@Suppress("DEPRECATION")
|
|
||||||
@get:Internal
|
@get:Internal
|
||||||
val defaultSerializedCompilerArguments: List<String>
|
val defaultSerializedCompilerArguments: List<String>
|
||||||
get() = createCompilerArguments(
|
get() = createCompilerArguments(
|
||||||
@@ -85,4 +82,4 @@ private val includedArgumentTypes = setOf(
|
|||||||
ArgumentType.Primitive,
|
ArgumentType.Primitive,
|
||||||
ArgumentType.PluginClasspath,
|
ArgumentType.PluginClasspath,
|
||||||
ArgumentType.DependencyClasspath,
|
ArgumentType.DependencyClasspath,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user