Add dummy parameter to conform to Buildable

This commit is contained in:
Dmitry
2023-08-25 10:40:05 +02:00
committed by quobix
parent ce1be302ee
commit 55da120b19
31 changed files with 39 additions and 39 deletions

View File

@@ -94,7 +94,7 @@ func (p *Parameter) GetExtensions() map[low.KeyReference[string]]low.ValueRefere
}
// Build will extract out extensions, schema, items and default value
func (p *Parameter) Build(root *yaml.Node, idx *index.SpecIndex) error {
func (p *Parameter) Build(_, root *yaml.Node, idx *index.SpecIndex) error {
root = utils.NodeAlias(root)
utils.CheckForMergeNodes(root)
p.Extensions = low.ExtractExtensions(root)