commonMain.internal.NonClosingIo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of knbt Show documentation
Show all versions of knbt Show documentation
Minecraft NBT support for kotlinx.serialization
The newest version!
package net.benwoodworth.knbt.internal
import okio.Sink
import okio.Source
internal class NonClosingSource(private val source: Source) : Source by source {
override fun close(): Unit = Unit
}
internal class NonClosingSink(private val sink: Sink) : Sink by sink {
override fun close(): Unit = Unit
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy