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
@@ -4,17 +4,17 @@ public object C {
1 -> {
run {
val a = 1
System.out.print("1")
print("1")
}
run {
val a = 2
System.out.print("2")
print("2")
}
}
2 -> {
val a = 2
System.out.print("2")
print("2")
}
}
}