Commit b85c91b2 authored by Him188's avatar Him188

Fix build

parent 85b72ac4
......@@ -502,8 +502,7 @@ class Jce private constructor(private val charset: JceCharset, context: SerialMo
internal val leastRemaining = input.remaining - maxReadSize
internal val isEndOfInput: Boolean get() = input.remaining <= leastRemaining
internal var currentJceHead: JceHead? = input.doReadHead().also {
// println("first jce head = $it") }
internal var currentJceHead: JceHead? = input.doReadHead()
override fun close() = input.close()
......@@ -597,8 +596,7 @@ class Jce private constructor(private val charset: JceCharset, context: SerialMo
val head = readHead()
readHead()
check(head.type.toInt() == 0) { "type mismatch" }
input.readBytes(readInt(0).also {
// println("list size=$it") })
input.readBytes(readInt(0))
}
else -> error("type mismatch")
}
......
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