KT-7151 Convert 'System.out.println()' to just 'println()'
#KT-7151 Fixed
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
fun foo(s: String?, b: Boolean): Int {
|
||||
if (s == null) System.out.println("null")
|
||||
if (s == null) println("null")
|
||||
if (b) return s!!.length()
|
||||
return 10
|
||||
}
|
||||
Reference in New Issue
Block a user