]> git.mxchange.org Git - jfinancials-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:13:21 +0000 (11:13 +0200)
- Variable 'password' can be final and no need for NULL, maybe an old leftover?

src/java/org/mxchange/jfinancials/beans/user/FinancialsAdminUserWebRequestBean.java

index e5c9260e2083a006cad37bd88d63df5253ba5854..86efca4f72e4e87fe43d1407a0c4f3ef61c15790 100644 (file)
@@ -702,10 +702,8 @@ public class FinancialsAdminUserWebRequestBean extends BaseFinancialsBean implem
         * @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?
@@ -720,10 +718,6 @@ public class FinancialsAdminUserWebRequestBean extends BaseFinancialsBean implem
                        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() >= FinancialsUserWebRequestController.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