mirror of
https://github.com/wneessen/logranger.git
synced 2024-11-22 12:50:50 +01:00
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:
parent
0fae461408
commit
1aaa9ac247
1 changed files with 0 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue