From a90ba16aed5df64d32577e9053019b99be4b89f4 Mon Sep 17 00:00:00 2001 From: Nikolay Igotti Date: Wed, 7 Feb 2018 12:16:38 +0300 Subject: [PATCH] Debugging output removed. --- .../src/org/jetbrains/kotlin/backend/konan/CAdapterGenerator.kt | 1 - 1 file changed, 1 deletion(-) 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 }