Remove unused GetReader function from tests

Obsolent sine the DataStore interface does not require
GetReader() any more.
This commit is contained in:
Marius 2016-01-23 22:45:31 +01:00
parent db9204927d
commit bf4762ffd5
1 changed files with 0 additions and 4 deletions

View File

@ -26,10 +26,6 @@ func (store zeroStore) GetInfo(id string) (FileInfo, error) {
return FileInfo{}, nil
}
func (store zeroStore) GetReader(id string) (io.Reader, error) {
return nil, ErrNotImplemented
}
type httpTest struct {
Name string