(code int)
| 1409 | return (*rwState)(w).doHeader() |
| 1410 | } |
| 1411 | func (w *rw5) WriteHeader(code int) { |
| 1412 | (*rwState)(w).doWriteHeader(code) |
| 1413 | } |
| 1414 | func (w *rw5) Write(b []byte) (int, error) { |
| 1415 | return (*rwState)(w).doWrite(b) |
| 1416 | } |
nothing calls this directly
no test coverage detected