Remove deprecated CInteropSettings#getDependencyConfigurationName

KT-55908
This commit is contained in:
Pavel Kirpichenkov
2023-06-14 22:12:23 +03:00
committed by Space Team
parent fd094835a4
commit a7ff0cfc9d
3 changed files with 0 additions and 13 deletions
@@ -582,7 +582,6 @@ public abstract interface class org/jetbrains/kotlin/gradle/plugin/CInteropSetti
public abstract fun defFile (Ljava/lang/Object;)V
public abstract fun extraOpts (Ljava/util/List;)V
public abstract fun extraOpts ([Ljava/lang/Object;)V
public abstract fun getDependencyConfigurationName ()Ljava/lang/String;
public abstract fun getDependencyFiles ()Lorg/gradle/api/file/FileCollection;
public abstract fun header (Ljava/lang/Object;)V
public abstract fun headers (Lorg/gradle/api/file/FileCollection;)V
@@ -21,11 +21,6 @@ interface CInteropSettings : Named {
fun headerFilterOnly(includeDirs: Collection<Any>)
}
@Deprecated(
"This configuration is no longer used by the plugin, the property shouldn't be accessed",
level = DeprecationLevel.ERROR
)
val dependencyConfigurationName: String
var dependencyFiles: FileCollection
// DSL.
@@ -69,13 +69,6 @@ abstract class DefaultCInteropSettings @Inject internal constructor(
internal val identifier = params.identifier
@Deprecated(
"This configuration is no longer used by the plugin, the property shouldn't be accessed",
level = DeprecationLevel.ERROR
)
override val dependencyConfigurationName: String
get() = params.dependencyConfigurationName
override var dependencyFiles: FileCollection = files()
val interopProcessingTaskName get() = params.interopProcessingTaskName