-------------------------------------------------------------------
| 552 | // ------------------------------------------------------------------- |
| 553 | |
| 554 | type reader struct { |
| 555 | r io.Reader |
| 556 | c io.Closer |
| 557 | attrs *blob.ReaderAttributes |
| 558 | } |
| 559 | |
| 560 | func (r *reader) Read(p []byte) (int, error) { |
| 561 | if r.r == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected