From: Roland Häder Date: Wed, 19 Oct 2022 11:48:37 +0000 (+0200) Subject: Changed: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f8f5c8bbd9c4d9e93035b8b19b88cb530cca559b;p=jcustomer-core.git Changed: - updated reference from Comparables to ComparableUtils Signed-off-by: Roland Häder --- 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;