in service/src/main/java/org/apache/fineract/cn/identity/internal/repository/RoleEntity.java [68:74]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
RoleEntity that = (RoleEntity) o;
return Objects.equals(identifier, that.identifier) &&
Objects.equals(permissions, that.permissions);
}