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

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jusercore/model/user/LoginUser.java

index 7d5cd26f431f6a7605f01d7ebbb2562be14ecc49..a8caa50bed9d3877fd98b2c64587a91536ecd3b3 100644 (file)
@@ -40,7 +40,7 @@ import javax.persistence.Transient;
 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.jusercore.model.user.profilemodes.ProfileMode;
 import org.mxchange.jusercore.model.user.status.UserAccountStatus;
 
@@ -236,7 +236,7 @@ public class LoginUser implements User {
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparitors);
+               final int comparison = ComparableUtils.checkAll(comparitors);
 
                // Return value
                return comparison;