Replace appendln with appendLine in project

This commit is contained in:
Alexander Udalov
2020-06-09 21:09:45 +02:00
parent d1c88798df
commit 6e67e1e78d
76 changed files with 405 additions and 402 deletions
@@ -415,7 +415,7 @@ internal class DescriptorRendererImpl(
) {
append(renderAnnotation(annotation, target))
if (eachAnnotationOnNewLine) {
appendln()
appendLine()
} else {
append(" ")
}
@@ -86,7 +86,7 @@ fun findCorrespondingSupertype(
private fun KotlinType.approximate() = approximateCapturedTypes(this).upper
private fun TypeConstructor.debugInfo() = buildString {
operator fun String.unaryPlus() = appendln(this)
operator fun String.unaryPlus() = appendLine(this)
+ "type: ${this@debugInfo}"
+ "hashCode: ${this@debugInfo.hashCode()}"