From: Roland Häder <roland@mxchange.org>
Date: Wed, 19 Oct 2022 11:48:36 +0000 (+0200)
Subject: Changed:
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5fefd718b50361649a541368a58272a79c3a7dd6;p=juser-core.git

Changed:
- updated reference from Comparables to ComparableUtils

Signed-off-by: Roland Häder <roland@mxchange.org>
---

diff --git a/src/org/mxchange/jusercore/model/user/LoginUser.java b/src/org/mxchange/jusercore/model/user/LoginUser.java
index 7d5cd26..a8caa50 100644
--- a/src/org/mxchange/jusercore/model/user/LoginUser.java
+++ b/src/org/mxchange/jusercore/model/user/LoginUser.java
@@ -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;