[Gradle] Demote FakeK2NativeCompilerArguments deprecation to 'WARNING'

KTIJ-25227
This commit is contained in:
Sebastian Sellmair
2023-04-17 17:58:19 +02:00
committed by Space Team
parent 0f5f4fd8fa
commit 7fe3c5c423
@@ -62,9 +62,10 @@ object NativeIdePlatformKind : IdePlatformKind() {
// These are fake compiler arguments for Kotlin/Native - only for usage within IDEA plugin:
@Deprecated(
message = "Use K2NativeCompilerArguments instead",
level = DeprecationLevel.ERROR
level = DeprecationLevel.WARNING
)
class FakeK2NativeCompilerArguments : CommonCompilerArguments() {
@Suppress("DEPRECATION")
override fun copyOf(): Freezable = copyCommonCompilerArguments(this, FakeK2NativeCompilerArguments())
}