1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-06 07:50:42 +00:00

"fixed" lint error

This commit is contained in:
M. Sz 2020-11-23 18:16:56 +01:00
parent 569608295c
commit 5e0b28c09e

View File

@ -182,7 +182,7 @@ func (r *RemoteClientConnection) bytesToJSON(buffer []byte) (string, d2netpacket
// decodeToPacket unmarshals the JSON string into the correct struct
// and returns a NetPacket declaring that struct.
// nolint:gocyclo // switch statement on packet type makes sense, no need to change
// nolint:gocyclo,funlen // switch statement on packet type makes sense, no need to change
func (r *RemoteClientConnection) decodeToPacket(
t d2netpackettype.NetPacketType,
data string) (d2netpacket.NetPacket, error) {