Cleanup in libraries and tools: use property access syntax.

This commit is contained in:
Ilya Gorbunov
2016-01-13 21:00:36 +03:00
parent 19a4f65fd1
commit 57dcbe0aea
22 changed files with 197 additions and 197 deletions
@@ -71,9 +71,9 @@ public class CompilerSmokeTest {
return text
}
val stdout = process.getInputStream()!!.readFully()
val stdout = process.inputStream!!.readFully()
System.out.println(stdout)
val stderr = process.getErrorStream()!!.readFully()
val stderr = process.errorStream!!.readFully()
System.err.println(stderr)
val result = process.waitFor()