(code int)
| 1392 | return (*rwState)(w).doHeader() |
| 1393 | } |
| 1394 | func (w *rw4) WriteHeader(code int) { |
| 1395 | (*rwState)(w).doWriteHeader(code) |
| 1396 | } |
| 1397 | func (w *rw4) Write(b []byte) (int, error) { |
| 1398 | return (*rwState)(w).doWrite(b) |
| 1399 | } |
nothing calls this directly
no test coverage detected