(code int)
| 1338 | return (*rwState)(w).doHeader() |
| 1339 | } |
| 1340 | func (w *rw1) WriteHeader(code int) { |
| 1341 | (*rwState)(w).doWriteHeader(code) |
| 1342 | } |
| 1343 | func (w *rw1) Write(b []byte) (int, error) { |
| 1344 | return (*rwState)(w).doWrite(b) |
| 1345 | } |
nothing calls this directly
no test coverage detected