From 29bb74c5379639484d036c4a374a0223e0619d3f Mon Sep 17 00:00:00 2001 From: shravan Date: Fri, 24 Jan 2020 21:09:04 +0530 Subject: [PATCH] 522 more missing changes from circleci --- pkg/policy/validation.go | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/pkg/policy/validation.go b/pkg/policy/validation.go index 3f55b8bc6b..5bce228379 100644 --- a/pkg/policy/validation.go +++ b/pkg/policy/validation.go @@ -230,16 +230,10 @@ func generateEmptyResource(kindSchema *openapi_v2.Schema) interface{} { return 0 case "boolean": if kindSchema.GetDefault() != nil { - if string(kindSchema.GetDefault().Value.Value) == "true" { - return true - } - return false + return string(kindSchema.GetDefault().Value.Value) == "true" } if kindSchema.GetExample() != nil { - if string(kindSchema.GetExample().GetValue().Value) == "true" { - return true - } - return false + return string(kindSchema.GetExample().GetValue().Value) == "true" } return false }