Skip to content

Commit 63558e5

Browse files
committed
remove sliceContains
1 parent c39ca98 commit 63558e5

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

pkg/utils.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -270,13 +270,3 @@ func checkCacheHit(value string, indicator string) bool {
270270
}
271271
return false
272272
}
273-
274-
/* Check if slice contains value */
275-
func sliceContains(slice []string, value string) bool {
276-
for _, v := range slice {
277-
if v == value {
278-
return true
279-
}
280-
}
281-
return false
282-
}

0 commit comments

Comments
 (0)