(d []byte)
| 401 | } |
| 402 | |
| 403 | func (rww *responseWriterWrapper) Write(d []byte) (int, error) { |
| 404 | if !rww.wroteHeader { |
| 405 | rww.WriteHeader(http.StatusOK) |
| 406 | } |
| 407 | return rww.ResponseWriterWrapper.Write(d) |
| 408 | } |
| 409 | |
| 410 | // Interface guards |
| 411 | var ( |
nothing calls this directly
no test coverage detected