chore(utils): remove dead code EE-4846 (#8253)

pull/8259/head
andres-portainer 2 years ago committed by GitHub
parent 3625ab6faa
commit e529327851
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,11 +0,0 @@
package utils
// Contains returns true if the given int is contained in the given slice of int.
func Contains(s []int, e int) bool {
for _, a := range s {
if a == e {
return true
}
}
return false
}
Loading…
Cancel
Save