Remove redundant function override

This commit is contained in:
Him188 2019-11-24 16:57:01 +08:00
parent 5b488bae36
commit 1a56235cb0

View File

@ -87,8 +87,5 @@ object UnknownPacketFactory : SessionPacketFactory<UnknownPacket>() {
}
object IgnoredPacketFactory : SessionPacketFactory<IgnoredPacket>() {
override suspend fun BotNetworkHandler<*>.handlePacket(packet: IgnoredPacket) {
}
override suspend fun ByteReadPacket.decode(id: PacketId, sequenceId: UShort, handler: BotNetworkHandler<*>): IgnoredPacket = IgnoredPacket(id)
}