| 375 | } |
| 376 | |
| 377 | type progressWriter struct { |
| 378 | io.WriteCloser |
| 379 | r io.ReadCloser |
| 380 | done chan struct{} |
| 381 | } |
| 382 | |
| 383 | func (w *progressWriter) Close() error { |
| 384 | err := w.WriteCloser.Close() |
nothing calls this directly
no outgoing calls
no test coverage detected