summaryrefslogtreecommitdiffstats
path: root/store/layered_store_hints.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/layered_store_hints.go')
-rw-r--r--store/layered_store_hints.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/store/layered_store_hints.go b/store/layered_store_hints.go
index 064f4f326..066f0a2fa 100644
--- a/store/layered_store_hints.go
+++ b/store/layered_store_hints.go
@@ -18,14 +18,3 @@ func hintsContains(hints []LayeredStoreHint, contains LayeredStoreHint) bool {
}
return false
}
-
-func hintsContainsAny(hints []LayeredStoreHint, contains ...LayeredStoreHint) bool {
- for _, hint := range hints {
- for _, hint2 := range contains {
- if hint == hint2 {
- return true
- }
- }
- }
- return false
-}