[Gradle] Demote FakeK2NativeCompilerArguments deprecation to 'WARNING'
KTIJ-25227
This commit is contained in:
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:
|
// These are fake compiler arguments for Kotlin/Native - only for usage within IDEA plugin:
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
message = "Use K2NativeCompilerArguments instead",
|
message = "Use K2NativeCompilerArguments instead",
|
||||||
level = DeprecationLevel.ERROR
|
level = DeprecationLevel.WARNING
|
||||||
)
|
)
|
||||||
class FakeK2NativeCompilerArguments : CommonCompilerArguments() {
|
class FakeK2NativeCompilerArguments : CommonCompilerArguments() {
|
||||||
|
@Suppress("DEPRECATION")
|
||||||
override fun copyOf(): Freezable = copyCommonCompilerArguments(this, FakeK2NativeCompilerArguments())
|
override fun copyOf(): Freezable = copyCommonCompilerArguments(this, FakeK2NativeCompilerArguments())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user