(code int)
| 1449 | return (*rwState)(w).doHeader() |
| 1450 | } |
| 1451 | func (w *rw7) WriteHeader(code int) { |
| 1452 | (*rwState)(w).doWriteHeader(code) |
| 1453 | } |
| 1454 | func (w *rw7) Write(b []byte) (int, error) { |
| 1455 | return (*rwState)(w).doWrite(b) |
| 1456 | } |
nothing calls this directly
no test coverage detected