summaryrefslogtreecommitdiffstats
path: root/pkg/gui/context/remote_branches_context.go
diff options
context:
space:
mode:
authorRyooooooga <eial5q265e5@gmail.com>2022-03-26 22:18:08 +0900
committerJesse Duffield <jessedduffield@gmail.com>2022-04-02 17:04:42 +1100
commit4835fc00b861c6117c1d4d6873a05d808e54b4cf (patch)
tree6f521eb16da8c9310cab776d6b57e84de32d4752 /pkg/gui/context/remote_branches_context.go
parent30be50b641dbe594d7968e79536028f22beee1b0 (diff)
introduce Ref interface
Diffstat (limited to 'pkg/gui/context/remote_branches_context.go')
-rw-r--r--pkg/gui/context/remote_branches_context.go19
1 files changed, 2 insertions, 17 deletions
diff --git a/pkg/gui/context/remote_branches_context.go b/pkg/gui/context/remote_branches_context.go
index 52217ef11..affcedf97 100644
--- a/pkg/gui/context/remote_branches_context.go
+++ b/pkg/gui/context/remote_branches_context.go
@@ -60,21 +60,6 @@ func (self *RemoteBranchesContext) GetSelectedItemId() string {
return item.ID()
}
-func (self *RemoteBranchesContext) GetSelectedRefName() string {
- item := self.GetSelected()
- if item == nil {
- return ""
- }
-
- return item.RefName()
-}
-
-func (self *RemoteBranchesContext) GetSelectedDescription() string {
- item := self.GetSelected()
-
- if item == nil {
- return ""
- }
-
- return item.Description()
+func (self *RemoteBranchesContext) GetSelectedRef() types.Ref {
+ return self.GetSelected()
}