Chore: Remove dead code (#28664)

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
Arve Knudsen
2020-11-05 11:00:00 +01:00
committed by GitHub
parent abe96f4f89
commit dff84f6a31
21 changed files with 49 additions and 596 deletions
-8
View File
@@ -1,13 +1,5 @@
package util
// MaxInt returns the larger of x or y.
func MaxInt(x, y int) int {
if x < y {
return y
}
return x
}
// MinInt returns the smaller of x or y.
func MinInt(x, y int) int {
if x > y {