]> git.mxchange.org Git - jcustomer-core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sat, 9 May 2020 23:49:51 +0000 (01:49 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 9 May 2020 23:49:51 +0000 (01:49 +0200)
- renamed other to fooEntity

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jcustomercore/model/customer/ContactCustomer.java

index 4372510d8c764893d447f6fd960bab0d6ae5b39c..198444616a5957d1aed12ccfb37821a902194da3 100644 (file)
@@ -201,23 +201,23 @@ public class ContactCustomer implements Customer {
                        return false;
                }
 
-               final Customer other = (Customer) object;
+               final Customer customer = (Customer) object;
 
-               if (!Objects.equals(this.getCustomerAccountStatus(), other.getCustomerAccountStatus())) {
+               if (!Objects.equals(this.getCustomerAccountStatus(), customer.getCustomerAccountStatus())) {
                        return false;
-               } else if (!Objects.equals(this.getCustomerConfirmKey(), other.getCustomerConfirmKey())) {
+               } else if (!Objects.equals(this.getCustomerConfirmKey(), customer.getCustomerConfirmKey())) {
                        return false;
-               } else if (!Objects.equals(this.getCustomerContact(), other.getCustomerContact())) {
+               } else if (!Objects.equals(this.getCustomerContact(), customer.getCustomerContact())) {
                        return false;
-               } else if (!Objects.equals(this.getCustomerId(), other.getCustomerId())) {
+               } else if (!Objects.equals(this.getCustomerId(), customer.getCustomerId())) {
                        return false;
-               } else if (!Objects.equals(this.getCustomerLastLocked(), other.getCustomerLastLocked())) {
+               } else if (!Objects.equals(this.getCustomerLastLocked(), customer.getCustomerLastLocked())) {
                        return false;
-               } else if (!Objects.equals(this.getCustomerLastLockedReason(), other.getCustomerLastLockedReason())) {
+               } else if (!Objects.equals(this.getCustomerLastLockedReason(), customer.getCustomerLastLockedReason())) {
                        return false;
-               } else if (!Objects.equals(this.getCustomerNumber(), other.getCustomerNumber())) {
+               } else if (!Objects.equals(this.getCustomerNumber(), customer.getCustomerNumber())) {
                        return false;
-               } else if (!Objects.equals(this.getCustomerPasswordHash(), other.getCustomerPasswordHash())) {
+               } else if (!Objects.equals(this.getCustomerPasswordHash(), customer.getCustomerPasswordHash())) {
                        return false;
                }