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

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