Fix NormalMember.toString

This commit is contained in:
Him188 2021-01-01 15:55:19 +08:00
parent 1a1c15d0d3
commit 77a0fb4c34

View File

@ -46,7 +46,7 @@ internal class NormalMemberImpl constructor(
@Suppress("unused") // false positive
val lastMessageSequence: AtomicInt = atomic(-1)
override fun toString(): String = "Member($id)"
override fun toString(): String = "NormalMember($id)"
@Suppress("UNCHECKED_CAST")
@JvmSynthetic