feat(aa): be more verbose on rule.Merge

This commit is contained in:
Alexandre Pujol 2024-06-25 20:10:12 +01:00
parent 880f0ef37e
commit 7c006dee0a
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
11 changed files with 69 additions and 29 deletions

View file

@ -77,3 +77,7 @@ func (r *Capability) Compare(other Rule) int {
}
return r.Qualifier.Compare(o.Qualifier)
}
func (r *Capability) Merge(other Rule) bool {
return false // Never merge capabilities
}