Remove unreachable code

go vet was complaining,

common/websocketconn/websocketconn.go:56:2: unreachable code
This commit is contained in:
Arlo Breault 2020-02-08 10:12:43 -05:00
parent ca9ae12c38
commit 28cf70bb44

View file

@ -53,7 +53,6 @@ func readLoop(w io.Writer, ws *websocket.Conn) error {
return err return err
} }
} }
return nil
} }
func writeLoop(ws *websocket.Conn, r io.Reader) error { func writeLoop(ws *websocket.Conn, r io.Reader) error {