apiserver/pkg/storage/utils: remove unused EverythingFunc

since we don't provide compatibility guarantees for the storage
package it is okay to simply remove unused function.
This commit is contained in:
Lukasz Szaszkiewicz 2024-03-11 11:47:02 +01:00
parent b3926d137c
commit a40f25f8e6

View File

@ -46,10 +46,6 @@ func SimpleUpdate(fn SimpleUpdateFunc) UpdateFunc {
}
}
func EverythingFunc(runtime.Object) bool {
return true
}
func NamespaceKeyFunc(prefix string, obj runtime.Object) (string, error) {
meta, err := meta.Accessor(obj)
if err != nil {