(path string)
| 214 | } |
| 215 | |
| 216 | func (m *realMounter) EvalSymlinks(path string) (string, error) { |
| 217 | return filepath.EvalSymlinks(path) |
| 218 | } |
| 219 | |
| 220 | func (m *realMounter) Rename(oldpath, newpath string) error { |
| 221 | return os.Rename(oldpath, newpath) |
nothing calls this directly
no test coverage detected