Added available()

This commit is contained in:
nathan 2020-08-10 23:33:09 +02:00
parent 01e09afe49
commit ef657078f9

View File

@ -27,6 +27,10 @@ class NopInputStream : InputStream() {
val INPUT_STREAM = NopInputStream()
}
override fun available(): Int {
return 0
}
override fun read(): Int {
return -1
}