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

pull/8259/head
andres-portainer 2022-12-30 14:52:58 -03:00 committed by GitHub
parent 3625ab6faa
commit e529327851
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 11 deletions

View File

@ -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
}