[Gradle] NativeDistributionCommonizerTask: Cleanup up-to-date checker comments

^KT-47301
This commit is contained in:
sebastian.sellmair
2021-06-22 15:39:07 +02:00
committed by Space
parent a643ce89ff
commit 6044c58333
@@ -47,7 +47,7 @@ internal open class NativeDistributionCommonizerTask : DefaultTask() {
.resolve(KONAN_DISTRIBUTION_PLATFORM_LIBS_DIR) .resolve(KONAN_DISTRIBUTION_PLATFORM_LIBS_DIR)
@get:OutputDirectories @get:OutputDirectories
@Suppress("unused") // Only for up-to-date checker. The directory with the original platform libs. @Suppress("unused") // Only for up-to-date checker.
val outputDirectories: Set<File> val outputDirectories: Set<File>
get() { get() {
val rootOutputDirectory = getRootOutputDirectory() val rootOutputDirectory = getRootOutputDirectory()
@@ -69,12 +69,12 @@ internal open class NativeDistributionCommonizerTask : DefaultTask() {
internal val commonizerRunner = KotlinNativeCommonizerToolRunner(project) internal val commonizerRunner = KotlinNativeCommonizerToolRunner(project)
@get:Classpath @get:Classpath
@Suppress("unused") // Only for up-to-date checker. The directory with the original platform libs. @Suppress("unused") // Only for up-to-date checker.
internal val commonizerClasspath: Set<File> internal val commonizerClasspath: Set<File>
get() = commonizerRunner.classpath get() = commonizerRunner.classpath
@get:Input @get:Input
@Suppress("unused") // Only for up-to-date checker. The directory with the original platform libs. @Suppress("unused") // Only for up-to-date checker.
internal val commonizerJvmArgs: List<String> internal val commonizerJvmArgs: List<String>
get() = commonizerRunner.getCustomJvmArgs() get() = commonizerRunner.getCustomJvmArgs()