Cleanup in compiler modules

This commit is contained in:
Ilya Gorbunov
2015-12-26 12:49:22 +03:00
parent 911adfd04d
commit 80916d5ed7
132 changed files with 322 additions and 322 deletions
@@ -109,15 +109,15 @@ public class CodeConformanceTest : TestCase() {
}
if (tests.flatMap { it.result }.isNotEmpty()) {
fail(StringBuilder {
fail(buildString {
for (test in tests) {
if (test.result.isNotEmpty()) {
append(test.message.format(test.result.size(), test.result.joinToString("\n")))
append(test.message.format(test.result.size, test.result.joinToString("\n")))
appendln()
appendln()
}
}
}.toString())
})
}
}
}