New J2K: Fix existing test data

This commit is contained in:
Ilya Kirillov
2019-03-12 12:46:24 +03:00
committed by Ilya Kirillov
parent 8bd49c147c
commit 7adba40ea2
6 changed files with 22 additions and 1 deletions
+3 -1
View File
@@ -4,6 +4,8 @@ import java.io.IOException
class C {
@Throws(IOException::class)
internal fun foo() {
ByteArrayInputStream(ByteArray(10)).use { stream -> println(stream.read()) }
ByteArrayInputStream(ByteArray(10)).use { stream ->
println(stream.read())
}
}
}