Commit ddf8ecf7 authored by Him188's avatar Him188

Fix build

parent fff94b23
...@@ -5,7 +5,6 @@ import kotlinx.coroutines.Dispatchers ...@@ -5,7 +5,6 @@ import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext import kotlinx.coroutines.withContext
import kotlinx.io.core.Input import kotlinx.io.core.Input
import net.mamoe.mirai.utils.FileCacheStrategy import net.mamoe.mirai.utils.FileCacheStrategy
import net.mamoe.mirai.utils.MiraiExperimentalAPI
import java.awt.image.BufferedImage import java.awt.image.BufferedImage
import java.net.URL import java.net.URL
...@@ -45,5 +44,9 @@ internal actual class DeferredReusableInput actual constructor( ...@@ -45,5 +44,9 @@ internal actual class DeferredReusableInput actual constructor(
return delegate?.writeTo(out) ?: error("DeferredReusableInput not yet initialized") return delegate?.writeTo(out) ?: error("DeferredReusableInput not yet initialized")
} }
override fun asInput(): Input {
return delegate?.asInput() ?: error("DeferredReusableInput not yet initialized")
}
actual val initialized: Boolean get() = delegate != null actual val initialized: Boolean get() = delegate != null
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment