From 5fd2640bf80ba48624924ecadd3e6696c776152e Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Sun, 1 Feb 2026 17:37:07 -0600 Subject: [PATCH] Remove dupe code --- widgets/tree_browser.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/widgets/tree_browser.go b/widgets/tree_browser.go index 8be5b8d..63ae27b 100644 --- a/widgets/tree_browser.go +++ b/widgets/tree_browser.go @@ -371,10 +371,3 @@ func (tn *TreeNode) GetPath() []string { } return append(path, tn.value) } -func (tn *TreeNode) GetLabelPath() []string { - var path []string - if tn.parent != nil { - path = tn.parent.GetLabelPath() - } - return append(path, tn.label) -}