KT-7151 Convert 'System.out.println()' to just 'println()'

#KT-7151 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-03-29 19:03:14 +03:00
parent 39f94d7d45
commit 1465418c2b
89 changed files with 198 additions and 140 deletions
@@ -1,14 +1,14 @@
fun foo() {
if (a)
System.out.println("a")
println("a")
else if (b)
System.out.println("b")
println("b")
else
System.out.println("else")
println("else")
if (c) {
System.out.println("c")
println("c")
} else if (d) {
System.out.println("d")
println("d")
}
}