From f8f5c8bbd9c4d9e93035b8b19b88cb530cca559b Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Wed, 19 Oct 2022 13:48:37 +0200
Subject: [PATCH] Changed: - updated reference from Comparables to
 ComparableUtils
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

Signed-off-by: Roland Häder <roland@mxchange.org>
---
 .../jcustomercore/model/customer/ContactCustomer.java         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/org/mxchange/jcustomercore/model/customer/ContactCustomer.java b/src/org/mxchange/jcustomercore/model/customer/ContactCustomer.java
index 73c02e5..efbac01 100644
--- a/src/org/mxchange/jcustomercore/model/customer/ContactCustomer.java
+++ b/src/org/mxchange/jcustomercore/model/customer/ContactCustomer.java
@@ -40,7 +40,7 @@ import org.apache.commons.lang3.StringUtils;
 import org.mxchange.jcontacts.model.contact.Contact;
 import org.mxchange.jcontacts.model.contact.UserContact;
 import org.mxchange.jcontacts.model.utils.ContactUtils;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jcustomercore.model.customer.status.CustomerAccountStatus;
 
 /**
@@ -186,7 +186,7 @@ public class ContactCustomer implements Customer {
 		};
 
 		// Check all values
-		final int comparison = Comparables.checkAll(comparators);
+		final int comparison = ComparableUtils.checkAll(comparators);
 
 		// Return value
 		return comparison;
-- 
2.39.5