summaryrefslogtreecommitdiffstats
path: root/pkg/git/branch.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/git/branch.go')
-rw-r--r--pkg/git/branch.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkg/git/branch.go b/pkg/git/branch.go
index e0fd75a73..78a52bbc8 100644
--- a/pkg/git/branch.go
+++ b/pkg/git/branch.go
@@ -6,12 +6,6 @@ import (
"github.com/fatih/color"
)
-// Branch : A git branch
-type Branch struct {
- Name string
- Recency string
-}
-
// GetDisplayString returns the dispaly string of branch
// func (b *Branch) GetDisplayString() string {
// return gui.withPadding(b.Recency, 4) + gui.coloredString(b.Name, b.getColor())