generated

This commit is contained in:
David Eads 2021-02-25 14:05:54 -05:00
parent 7d7b3438a5
commit 651c79b37f

View File

@ -744,7 +744,7 @@ spec:
origSchema := &apiextensionsv1.JSONSchemaProps{
Type: "object",
Properties: map[string]apiextensionsv1.JSONSchemaProps{
"a": apiextensionsv1.JSONSchemaProps{
"a": {
Type: "object",
},
},
@ -1715,10 +1715,6 @@ func float64Ptr(f float64) *float64 {
return &f
}
func int64Ptr(f int64) *int64 {
return &f
}
func strPtr(str string) *string {
return &str
}