refactoring

This commit is contained in:
Chris Lu
2020-03-27 00:30:55 -07:00
parent 2f5ed29c37
commit e1911760a7
2 changed files with 3 additions and 2 deletions

View File

@@ -99,7 +99,6 @@ func (c *FsCache) Move(oldPath util.FullPath, newPath util.FullPath) *FsNode {
if f.entry != nil {
f.entry.Name = f.Name
}
f.dir = target.parent.node.(*Dir)
}
parent.disconnectChild(target)
@@ -119,6 +118,9 @@ func (n *FsNode) connectToParent(parent *FsNode) {
if dir, ok := n.node.(*Dir); ok {
dir.parent = parent.node.(*Dir)
}
if f, ok := n.node.(*File); ok {
f.dir = parent.node.(*Dir)
}
n.childrenLock.Lock()
parent.children[n.name] = n
n.childrenLock.Unlock()