Remove deprecated CInteropSettings#getDependencyConfigurationName
KT-55908
This commit is contained in:
committed by
Space Team
parent
fd094835a4
commit
a7ff0cfc9d
@@ -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 defFile (Ljava/lang/Object;)V
|
||||||
public abstract fun extraOpts (Ljava/util/List;)V
|
public abstract fun extraOpts (Ljava/util/List;)V
|
||||||
public abstract fun extraOpts ([Ljava/lang/Object;)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 getDependencyFiles ()Lorg/gradle/api/file/FileCollection;
|
||||||
public abstract fun header (Ljava/lang/Object;)V
|
public abstract fun header (Ljava/lang/Object;)V
|
||||||
public abstract fun headers (Lorg/gradle/api/file/FileCollection;)V
|
public abstract fun headers (Lorg/gradle/api/file/FileCollection;)V
|
||||||
|
|||||||
-5
@@ -21,11 +21,6 @@ interface CInteropSettings : Named {
|
|||||||
fun headerFilterOnly(includeDirs: Collection<Any>)
|
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
|
var dependencyFiles: FileCollection
|
||||||
|
|
||||||
// DSL.
|
// DSL.
|
||||||
|
|||||||
-7
@@ -69,13 +69,6 @@ abstract class DefaultCInteropSettings @Inject internal constructor(
|
|||||||
|
|
||||||
internal val identifier = params.identifier
|
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()
|
override var dependencyFiles: FileCollection = files()
|
||||||
|
|
||||||
val interopProcessingTaskName get() = params.interopProcessingTaskName
|
val interopProcessingTaskName get() = params.interopProcessingTaskName
|
||||||
|
|||||||
Reference in New Issue
Block a user