the pointer is always not nil, no need to check it

This commit is contained in:
q191201771 2021-02-18 20:05:16 +08:00
parent bfad41165c
commit d16f36a1e3

View file

@ -323,9 +323,6 @@ func (p *packetPacker) MaybePackAckPacket(handshakeConfirmed bool) (*packedPacke
}
encLevel = protocol.Encryption1RTT
}
if ack == nil {
return nil, nil
}
payload := &payload{
ack: ack,
length: ack.Length(p.version),