summaryrefslogtreecommitdiffstats
path: root/pkg/gui/status_tree.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/status_tree.go')
-rw-r--r--pkg/gui/status_tree.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkg/gui/status_tree.go b/pkg/gui/status_tree.go
index b7edf24e0..37de6c95e 100644
--- a/pkg/gui/status_tree.go
+++ b/pkg/gui/status_tree.go
@@ -35,7 +35,6 @@ func GetTreeFromStatusFiles(files []*models.File, log *logrus.Entry) *models.Sta
}
newChild := &models.StatusLineNode{
- Name: path, // TODO: Remove concept of name
Path: path,
File: setFile,
}
@@ -55,7 +54,6 @@ func GetFlatTreeFromStatusFiles(files []*models.File) *models.StatusLineNode {
root := &models.StatusLineNode{}
for _, file := range files {
root.Children = append(root.Children, &models.StatusLineNode{
- Name: file.GetPath(),
Path: file.GetPath(),
File: file,
})