in api/src/main/java/org/apache/fineract/cn/payroll/api/v1/domain/PayrollAllocation.java [66:73]
public boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
final PayrollAllocation that = (PayrollAllocation) o;
return accountNumber != null ? accountNumber.equals(that.accountNumber) : that.accountNumber == null;
}