From 5fde347363fbbb80d2681d6852c8d6aa2e3103ef Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 10 May 2020 00:46:41 +0200 Subject: [PATCH] Continued: - also don't include empoyee here, too. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../model/headquarter/BusinessHeadquarter.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/org/mxchange/jcontactsbusiness/model/headquarter/BusinessHeadquarter.java b/src/org/mxchange/jcontactsbusiness/model/headquarter/BusinessHeadquarter.java index c12496f..27923e1 100644 --- a/src/org/mxchange/jcontactsbusiness/model/headquarter/BusinessHeadquarter.java +++ b/src/org/mxchange/jcontactsbusiness/model/headquarter/BusinessHeadquarter.java @@ -346,8 +346,6 @@ public class BusinessHeadquarter implements Headquarter { return false; } else if (!Objects.equals(this.getHeadquarterCompanyName(), headquarter.getHeadquarterCompanyName())) { return false; - } else if (!Objects.equals(this.getHeadquarterContactEmployee(), headquarter.getHeadquarterContactEmployee())) { - return false; } else if (!Objects.equals(this.getHeadquarterCountry(), headquarter.getHeadquarterCountry())) { return false; } else if (!Objects.equals(this.getHeadquarterEmailAddress(), headquarter.getHeadquarterEmailAddress())) { @@ -579,7 +577,6 @@ public class BusinessHeadquarter implements Headquarter { hash = 47 * hash + Objects.hashCode(this.getHeadquarterCity()); hash = 47 * hash + Objects.hashCode(this.getHeadquarterCompanyName()); - hash = 47 * hash + Objects.hashCode(this.getHeadquarterContactEmployee()); hash = 47 * hash + Objects.hashCode(this.getHeadquarterCountry()); hash = 47 * hash + Objects.hashCode(this.getHeadquarterEmailAddress()); hash = 47 * hash + Objects.hashCode(this.getHeadquarterFaxNumber()); -- 2.39.5