diff --git a/.golangci.yml b/.golangci.yml index 63491b3f..ac775a82 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,6 +1,5 @@ run: skip-files: - - http3/response_writer_closenotifier.go - internal/handshake/unsafe_test.go linters-settings: diff --git a/http3/response_writer.go b/http3/response_writer.go index 6f561b87..a890f5a2 100644 --- a/http3/response_writer.go +++ b/http3/response_writer.go @@ -81,9 +81,6 @@ func (w *responseWriter) Write(p []byte) (int, error) { func (w *responseWriter) Flush() {} -// This is a NOP. Use http.Request.Context -func (w *responseWriter) CloseNotify() <-chan bool { return make(<-chan bool) } - // test that we implement http.Flusher var _ http.Flusher = &responseWriter{} diff --git a/http3/response_writer_closenotifier.go b/http3/response_writer_closenotifier.go deleted file mode 100644 index b9d3f111..00000000 --- a/http3/response_writer_closenotifier.go +++ /dev/null @@ -1,9 +0,0 @@ -package http3 - -import "net/http" - -// The CloseNotifier is a deprecated interface, and staticcheck will report that from Go 1.11. -// By defining it in a separate file, we can exclude this file from staticcheck. - -// test that we implement http.CloseNotifier -var _ http.CloseNotifier = &responseWriter{}