KT-7151 Convert 'System.out.println()' to just 'println()'
#KT-7151 Fixed
This commit is contained in:
@@ -3,11 +3,11 @@ fun foo() {
|
||||
when (take()) {
|
||||
1 -> continue
|
||||
2 -> {
|
||||
System.out.println("2")
|
||||
println("2")
|
||||
return
|
||||
}
|
||||
3 -> break@Loop
|
||||
}
|
||||
System.out.println()
|
||||
println()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user