Remove unused function

This commit is contained in:
Stefan Haller 2025-04-15 10:33:14 +02:00
parent 4cfa6e0c98
commit 9d202cf9ea

View file

@ -33,15 +33,6 @@ type Pipe struct {
var highlightStyle = style.FgLightWhite.SetBold()
func ContainsCommitHash(pipes []*Pipe, hash string) bool {
for _, pipe := range pipes {
if equalHashes(pipe.fromHash, hash) {
return true
}
}
return false
}
func (self Pipe) left() int {
return min(self.fromPos, self.toPos)
}