Compiler&plugin deprecations cleanup: length, size, indices, tail and other collection operations.

This commit is contained in:
Ilya Gorbunov
2015-06-25 18:49:25 +03:00
parent f3a19ebe11
commit 32144257ec
23 changed files with 46 additions and 45 deletions
@@ -135,7 +135,7 @@ class LambdaExpression(val arguments: String?, val block: Block) : Expression()
if (arguments != null) {
builder.append(arguments)
.append("->")
.append(if (block.statements.size > 1) "\n" else " ")
.append(if (block.statements.size() > 1) "\n" else " ")
.append(block.statements, "\n")
}
else {