Replaced AttributeType with AssertionType

Closes #40027

Signed-off-by: Anchels <mishtitov@gmail.com>
This commit is contained in:
Anchels 2025-06-02 11:59:33 -04:00 committed by GitHub
parent 856293b7cc
commit ec59b36193
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,12 +50,12 @@ public class EntityAttributes implements Serializable {
return assertion;
}
public void addAssertion(AssertionType attributeType) {
assertion.add(attributeType);
public void addAssertion(AssertionType assertionType) {
assertion.add(assertionType);
}
public void removeAssertion(AttributeType attributeType) {
assertion.remove(attributeType);
public void removeAssertion(AssertionType assertionType) {
assertion.remove(assertionType);
}
}