]> git.mxchange.org Git - juser-login-core.git/commitdiff
updated references
authorRoland Häder <roland@mxchange.org>
Fri, 7 Oct 2022 18:05:25 +0000 (20:05 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 7 Oct 2022 18:05:25 +0000 (20:05 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/juserlogincore/login/UserLoginUtils.java

index 3a110f55e1c9d4335b8704766412ff22bbe09852..43505ba825e69dca6b7a78efc62ed43f8d9d9720 100644 (file)
@@ -26,7 +26,7 @@ import org.apache.commons.codec.digest.Crypt;
 import org.apache.commons.codec.digest.DigestUtils;
 import org.mxchange.jcontacts.model.contact.Contact;
 import org.mxchange.jusercore.model.user.User;
-import org.mxchange.jusercore.model.user.Users;
+import org.mxchange.jusercore.model.utils.UserUtils;
 import org.mxchange.juserlogincore.container.login.LoginContainer;
 
 /**
@@ -259,7 +259,7 @@ public class UserLoginUtils implements Serializable {
                 * Generates random string by creating a random, encrypted password
                 * which gives nice entropy to start with.
                 */
-               final StringBuilder key = new StringBuilder(encryptPassword(Users.generateRandomUserName()));
+               final StringBuilder key = new StringBuilder(encryptPassword(UserUtils.generateRandomUserName()));
 
                // Is user set?
                if (user instanceof User) {