| 43 | ) |
| 44 | |
| 45 | type tarOutputCancelContext struct { |
| 46 | context.Context |
| 47 | output string |
| 48 | done chan struct{} |
| 49 | } |
| 50 | |
| 51 | func (obj *tarOutputCancelContext) Done() <-chan struct{} { |
| 52 | return obj.done |
nothing calls this directly
no outgoing calls
no test coverage detected