| 408 | } |
| 409 | |
| 410 | type writableFile struct { |
| 411 | io.WriteCloser |
| 412 | name string |
| 413 | } |
| 414 | |
| 415 | func (f writableFile) Name() string { return f.name } |
| 416 | func (f writableFile) Sync() error { return nil } // TODO: send fsync |
nothing calls this directly
no outgoing calls
no test coverage detected