Annotate readTlvMap with @MiraiInternalIp

This commit is contained in:
Him188 2020-02-14 13:45:46 +08:00
parent 4218cdb7bb
commit 8bf302d386

View File

@ -81,7 +81,7 @@ inline fun TlvMap.getOrFail(tag: Int, lazyMessage: (tag: Int) -> String): ByteAr
return this[tag] ?: error(lazyMessage(tag))
}
@MiraiDebugAPI
@MiraiInternalAPI
inline fun Input.readTLVMap(tagSize: Int = 2, suppressDuplication: Boolean = true): TlvMap = readTLVMap(true, tagSize, suppressDuplication)
@MiraiDebugAPI