1
0
Fork 0

tar/storage: remove cruft Reader

This commit is contained in:
Vincent Batts 2015-02-24 16:10:49 -05:00
parent bb8f53526a
commit 34a67dfed5
1 changed files with 0 additions and 30 deletions

View File

@ -1,30 +0,0 @@
package storage
import (
"io"
"github.com/vbatts/tar-split/archive/tar"
)
func NewReader(r io.Reader, p Packer) *Reader {
return &Reader{
tr: tar.NewReader(r),
p: p,
}
}
// Reader resembles the tar.Reader struct, and is handled the same. Though it
// takes an Packer which write the stored records and file info
type Reader struct {
tr *tar.Reader
p Packer
}
func (r *Reader) Next() (*tar.Header, error) {
// TODO read RawBytes
return r.tr.Next()
}
func (r *Reader) Read(b []byte) (i int, e error) {
return r.tr.Read(b)
}