Remove leading/trailing newlines following whitespace linter recommendation

This commit is contained in:
Arthur Mello
2019-12-05 23:27:01 -03:00
parent a077482e99
commit d4fa006ccb
10 changed files with 0 additions and 13 deletions

View File

@@ -138,7 +138,6 @@ func (r *ByteReader) Read() ([]*yaml.RNode, error) {
len(values) == 1 && // Only unwrap if there is only 1 value
(meta.Kind == ResourceListKind || meta.Kind == "List") &&
node.Field("items") != nil {
r.WrappingKind = meta.Kind
r.WrappingAPIVersion = meta.APIVersion
@@ -154,7 +153,6 @@ func (r *ByteReader) Read() ([]*yaml.RNode, error) {
// add items
output = append(output, yaml.NewRNode(items.Value.Content()[i]))
}
}
continue
}