1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

CR: uncomment deadcode

This commit is contained in:
shivkumar dudhani 2019-10-01 16:59:26 -07:00
parent 7782c776f1
commit c4e263564f
2 changed files with 0 additions and 6 deletions

View file

@ -163,11 +163,6 @@ func (eh ExistanceHandler) Handle(resourceMap map[string]interface{}, originPatt
glog.Error("Invalid type: Existance ^ () anchor can be used only on list/array type resource")
return currentPath, fmt.Errorf("Invalid resource type %T: Existance ^ () anchor can be used only on list/array type resource", value)
}
_, err := validateResourceElement(value, eh.pattern, originPattern, currentPath)
if err == nil {
// if the anchor value is the satisfied then we evaluate the next
return "", nil
}
}
return "", nil
}

View file

@ -185,7 +185,6 @@ func validateResourceElement(resourceElement, patternElement, originPattern inte
// For each element of the map we must detect the type again, so we pass these elements to validateResourceElement
func validateMap(resourceMap, patternMap map[string]interface{}, origPattern interface{}, path string) (string, error) {
// check if there is anchor in pattern
// anchor, pattern := getAnchorFromMap(patternMap)
// Phase 1 : Evaluate all the anchors
// Phase 2 : Evaluate non-anchors
anchors, resources := getAnchorsResourcesFromMap(patternMap)