diff --git a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/CAdapterGenerator.kt b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/CAdapterGenerator.kt index a1b9aa0d8e8..f7a0461dac9 100644 --- a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/CAdapterGenerator.kt +++ b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/CAdapterGenerator.kt @@ -132,7 +132,6 @@ private fun functionImplName(descriptor: DeclarationDescriptor, default: String, val annotation = descriptor.annotations.findAnnotation(cnameAnnotation) ?: return default val key = if (shortName) "shortName" else "fullName" val value = annotation.properValue(key) - println("val='$value'") return value.takeIf { value != null && value.isNotEmpty() } ?: default }