]> git.mxchange.org Git - jjobs-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sun, 25 Sep 2022 09:13:21 +0000 (11:13 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 25 Sep 2022 09:14:37 +0000 (11:14 +0200)
- Variable 'password' can be final and no need for NULL, maybe an old leftover?

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebRequestBean.java

index c83aba9427f000f11a74cb0de8de32276a6ab2e2..f971298b86a2b578c27326b2dd7864d1d4b22780 100644 (file)
@@ -708,10 +708,8 @@ public class JobsAdminUserWebRequestBean extends BaseJobsBean implements JobsAdm
         * @return New user instance
         */
        private User createUserInstance () {
-               // Init variable for password
-               String password = null;
-
-               // Init instance
+               // Init variable for password and contact
+               final String password;
                final Contact userContact;
 
                // Is a contact instance in helper set?
@@ -726,10 +724,6 @@ public class JobsAdminUserWebRequestBean extends BaseJobsBean implements JobsAdm
                        password = this.getUserPassword();
                }
 
-               // The password should not be null and at least 5 characters long
-               assert (password != null) : "password is null"; //NOI18N
-               assert (password.length() >= JobsUserWebRequestController.MINIMUM_PASSWORD_LENGTH) : "Password is not long enough."; //NOI18N
-
                // Is contact instance given? Else create one
                if (this.getContact() instanceof Contact) {
                        // Then use it for contact linking