]> git.mxchange.org Git - jcustomer-core.git/commitdiff
Changed:
authorRoland Häder <roland@mxchange.org>
Wed, 19 Oct 2022 11:48:37 +0000 (13:48 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 19 Oct 2022 11:48:37 +0000 (13:48 +0200)
- updated reference from Comparables to ComparableUtils

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

index 73c02e5a5d5c26e9415971a95fbc263aea0b7fec..efbac01ee8da38da70942e2306a3008484ea0ecf 100644 (file)
@@ -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;