in service/src/main/java/org/apache/fineract/cn/stellarbridge/service/internal/repository/BridgeConfigurationEntity.java [106:115]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BridgeConfigurationEntity that = (BridgeConfigurationEntity) o;
return Objects.equals(stellarAccountIdentifier, that.stellarAccountIdentifier);
}