Skip to content

Commit 9d202cf

Browse files
committed
Remove unused function
1 parent 4cfa6e0 commit 9d202cf

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

pkg/gui/presentation/graph/graph.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,6 @@ type Pipe struct {
3333

3434
var highlightStyle = style.FgLightWhite.SetBold()
3535

36-
func ContainsCommitHash(pipes []*Pipe, hash string) bool {
37-
for _, pipe := range pipes {
38-
if equalHashes(pipe.fromHash, hash) {
39-
return true
40-
}
41-
}
42-
return false
43-
}
44-
4536
func (self Pipe) left() int {
4637
return min(self.fromPos, self.toPos)
4738
}

0 commit comments

Comments
 (0)