We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bf4fa9 commit d42bdadCopy full SHA for d42bdad
core/kotlinx-coroutines-io/src/main/kotlin/kotlinx/coroutines/experimental/io/ByteBufferChannel.kt
@@ -1041,7 +1041,7 @@ internal class ByteBufferChannel(
1041
}
1042
1043
suspend override fun writeFully(src: ByteBuffer) {
1044
- joining?.let { resolveDelegation(this, it)?.let { return .writeFully(src) } }
+ joining?.let { resolveDelegation(this, it)?.let { return it.writeFully(src) } }
1045
1046
writeAsMuchAsPossible(src)
1047
if (!src.hasRemaining()) return
0 commit comments