KT-7151 Convert 'System.out.println()' to just 'println()'
#KT-7151 Fixed
This commit is contained in:
@@ -3,6 +3,6 @@ import java.io.*
|
||||
public class C {
|
||||
throws(javaClass<IOException>())
|
||||
fun foo() {
|
||||
ByteArrayInputStream(ByteArray(10)).use { stream -> System.out.println(stream.read()) }
|
||||
ByteArrayInputStream(ByteArray(10)).use { stream -> println(stream.read()) }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user