Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
benoittoulme committed Jun 18, 2024
1 parent e536448 commit 96c71a3
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions server/events/vcs/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,3 @@ func SplitComment(comment string, maxSize int, sepEnd string, sepStart string, m
}
return comments
}

func min(a, b int) int {
if a < b {
return a
}
return b
}

func max(a, b int) int {
if a > b {
return a
}
return b
}

0 comments on commit 96c71a3

Please sign in to comment.