Debugging output removed.

This commit is contained in:
Nikolay Igotti
2018-02-07 12:16:38 +03:00
parent fca3057118
commit a90ba16aed
@@ -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
}