Chore: remove unused math function (#79120)

This commit is contained in:
Ryan McKinley
2023-12-06 01:38:48 -08:00
committed by GitHub
parent 9f0fc60477
commit 3299809977
-9
View File
@@ -1,9 +0,0 @@
package util
// MinInt returns the smaller of x or y.
func MinInt(x, y int) int {
if x > y {
return y
}
return x
}