Add more tests and explain some strange quotes.

This commit is contained in:
monopole
2021-01-13 13:03:22 -08:00
parent cf8815b0a0
commit bb41d018b5
11 changed files with 111 additions and 92 deletions

View File

@@ -621,12 +621,8 @@ func (m *resWrangler) ApplySmPatch(
return nil
}
func (m *resWrangler) RemoveIdAnnotations() error {
func (m *resWrangler) RemoveIdAnnotations() {
for _, r := range m.Resources() {
err := r.RemoveIdAnnotations()
if err != nil {
return err
}
r.RemoveIdAnnotations()
}
return nil
}