zoho: remove unused code (fixes issue reported by the unused linter)

This commit is contained in:
albertony 2023-03-25 23:23:15 +01:00
parent 9cea493f58
commit 5f3c276d0a

View File

@ -331,15 +331,6 @@ func parsePath(path string) (root string) {
return
}
func (f *Fs) splitPath(remote string) (directory, leaf string) {
directory, leaf = dircache.SplitPath(remote)
if f.root != "" {
// Adds the root folder to the path to get a full path
directory = path.Join(f.root, directory)
}
return
}
// readMetaDataForPath reads the metadata from the path
func (f *Fs) readMetaDataForPath(ctx context.Context, path string) (info *api.Item, err error) {
// defer fs.Trace(f, "path=%q", path)("info=%+v, err=%v", &info, &err)