[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)
@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>
get() {
val rootOutputDirectory = getRootOutputDirectory()
@@ -69,12 +69,12 @@ internal open class NativeDistributionCommonizerTask : DefaultTask() {
internal val commonizerRunner = KotlinNativeCommonizerToolRunner(project)
@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>
get() = commonizerRunner.classpath
@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>
get() = commonizerRunner.getCustomJvmArgs()