(ctx context.Context, op *fuseops.SyncFileOp)
| 167 | } |
| 168 | |
| 169 | func (fs *gatedFileSystem) SyncFile(ctx context.Context, op *fuseops.SyncFileOp) error { |
| 170 | return fs.next.SyncFile(ctx, op) |
| 171 | } |
| 172 | |
| 173 | func (fs *gatedFileSystem) FlushFile(ctx context.Context, op *fuseops.FlushFileOp) error { |
| 174 | return fs.next.FlushFile(ctx, op) |
nothing calls this directly
no outgoing calls
no test coverage detected