Преглед на файлове

Fix go vet warning

Move variables from example function arguments to package level
variables to avoid `go vet` warning.
Gary Burd преди 9 години
родител
ревизия
d1d4086b14
променени са 1 файла, в които са добавени 7 реда и са изтрити 1 реда
  1. 7 1
      example_test.go

+ 7 - 1
example_test.go

@@ -12,6 +12,11 @@ import (
 	"github.com/gorilla/websocket"
 )
 
+var (
+	c   *websocket.Conn
+	req *http.Request
+)
+
 // The websocket.IsUnexpectedCloseError function is useful for identifying
 // application and protocol errors.
 //
@@ -20,7 +25,8 @@ import (
 // only expected close message from the client has the code
 // websocket.CloseGoingAway. All other other close messages are likely the
 // result of an application or protocol error and are logged to aid debugging.
-func ExampleIsUnexpectedCloseError(err error, c *websocket.Conn, req *http.Request) {
+func ExampleIsUnexpectedCloseError() {
+
 	for {
 		messageType, p, err := c.ReadMessage()
 		if err != nil {