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

@@ -27,7 +27,7 @@ func (e *Examples) FindExample(name string) *low.ValueReference[any] {
}
// Build will extract all examples and will attempt to unmarshal content into a map or slice based on type.
func (e *Examples) Build(root *yaml.Node, _ *index.SpecIndex) error {
func (e *Examples) Build(_, root *yaml.Node, _ *index.SpecIndex) error {
root = utils.NodeAlias(root)
utils.CheckForMergeNodes(root)
var keyNode, currNode *yaml.Node