| 90 | } |
| 91 | |
| 92 | type flateWriteWrapper struct { |
| 93 | fw *flate.Writer |
| 94 | tw *truncWriter |
| 95 | p *sync.Pool |
| 96 | } |
| 97 | |
| 98 | func (w *flateWriteWrapper) Write(p []byte) (int, error) { |
| 99 | if w.fw == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected