mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-10 02:20:14 +08:00
Fix build
This commit is contained in:
parent
85b72ac4b8
commit
b85c91b25d
@ -502,8 +502,7 @@ class Jce private constructor(private val charset: JceCharset, context: SerialMo
|
|||||||
internal val leastRemaining = input.remaining - maxReadSize
|
internal val leastRemaining = input.remaining - maxReadSize
|
||||||
internal val isEndOfInput: Boolean get() = input.remaining <= leastRemaining
|
internal val isEndOfInput: Boolean get() = input.remaining <= leastRemaining
|
||||||
|
|
||||||
internal var currentJceHead: JceHead? = input.doReadHead().also {
|
internal var currentJceHead: JceHead? = input.doReadHead()
|
||||||
// println("first jce head = $it") }
|
|
||||||
|
|
||||||
override fun close() = input.close()
|
override fun close() = input.close()
|
||||||
|
|
||||||
@ -597,8 +596,7 @@ class Jce private constructor(private val charset: JceCharset, context: SerialMo
|
|||||||
val head = readHead()
|
val head = readHead()
|
||||||
readHead()
|
readHead()
|
||||||
check(head.type.toInt() == 0) { "type mismatch" }
|
check(head.type.toInt() == 0) { "type mismatch" }
|
||||||
input.readBytes(readInt(0).also {
|
input.readBytes(readInt(0))
|
||||||
// println("list size=$it") })
|
|
||||||
}
|
}
|
||||||
else -> error("type mismatch")
|
else -> error("type mismatch")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user