Automated go.sum updates.

This commit is contained in:
jregan
2020-08-15 19:12:23 -07:00
parent 881f358228
commit 4dfe3c6296
4 changed files with 5 additions and 21 deletions

View File

@@ -55,7 +55,6 @@ func IsYNodeEmptyMap(n *yaml.Node) bool {
return n != nil && n.Kind == yaml.MappingNode && len(n.Content) == 0
}
// IsYNodeEmptyMap is true if the Node is a non-nil empty sequence.
func IsYNodeEmptySeq(n *yaml.Node) bool {
return n != nil && n.Kind == yaml.SequenceNode && len(n.Content) == 0