Remove unnecessary line break in server.go

An unnecessary line break in the server.go file was removed, which was situated between connection error handling and the read loop. Such spacing did not contribute to readability or function, hence impacting the overall code cleanliness.
This commit is contained in:
Winni Neessen 2023-12-22 17:33:26 +01:00
parent 0fae461408
commit 1aaa9ac247
Signed by: wneessen
GPG key ID: 5F3AF39B820C119D

View file

@ -137,7 +137,6 @@ func (s *Server) HandleConnection(c *Connection) {
if err := c.conn.Close(); err != nil {
s.log.Error("failed to close connection", LogErrKey, err)
}
}()
ReadLoop: