()
| 352 | |
| 353 | func (f *openFile) Close() error { return nil } |
| 354 | func (f *openFile) Stat() (fs.FileInfo, error) { return f.f, nil } |
| 355 | |
| 356 | func (f *openFile) Read(b []byte) (int, error) { |
| 357 | if f.offset >= int64(len(f.f.data)) { |
nothing calls this directly
no outgoing calls
no test coverage detected