in service/src/main/java/org/apache/fineract/cn/stellarbridge/service/internal/horizonadapter/HorizonServerUtilities.java [197:207]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
MatchingAssetPair that = (MatchingAssetPair) o;
return Objects.equals(asset1, that.asset1) &&
Objects.equals(asset2, that.asset2);
}