don't fake-implement the http.CloseNotifier interface

This commit is contained in:
Marten Seemann 2019-09-05 11:47:46 +07:00
parent d1489e5045
commit 93b1ff8e2c
3 changed files with 0 additions and 13 deletions

View file

@ -1,6 +1,5 @@
run:
skip-files:
- http3/response_writer_closenotifier.go
- internal/handshake/unsafe_test.go
linters-settings:

View file

@ -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{}

View file

@ -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{}