| 870 | } |
| 871 | |
| 872 | type statusRecorder struct { |
| 873 | http.ResponseWriter |
| 874 | statusCode int |
| 875 | } |
| 876 | |
| 877 | func (r *statusRecorder) WriteHeader(statusCode int) { |
| 878 | r.statusCode = statusCode |
nothing calls this directly
no outgoing calls
no test coverage detected