realOsFile is an implementation of vfs.Handle
| 32 | |
| 33 | // realOsFile is an implementation of vfs.Handle |
| 34 | type realOsFile struct { |
| 35 | *os.File |
| 36 | } |
| 37 | |
| 38 | // Flush |
| 39 | func (f realOsFile) Flush() error { |
nothing calls this directly
no outgoing calls
no test coverage detected