(p []byte)
| 273 | } |
| 274 | |
| 275 | func (r *readCloserAdapter) Read(p []byte) (int, error) { |
| 276 | return r.r.Read(p) |
| 277 | } |
| 278 | |
| 279 | func (r *readCloserAdapter) Close() error { |
| 280 | return nil |
nothing calls this directly
no outgoing calls
no test coverage detected