]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sun, 25 Sep 2022 20:36:04 +0000 (22:36 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 25 Sep 2022 20:38:46 +0000 (22:38 +0200)
- branch offices have optional email addresses (finally found the bug that you
  always must enter an email address while the form field is not marked as
  required)

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/pizzaapplication/validator/business/basicdata/PizzaCompanyNameValidator.java

index 33bef796fc7b8c20b9c20f9571591e2b00a4c44c..d45804e0b40ed2be9a0bb496ab3c3f4226c64b24 100644 (file)
@@ -66,7 +66,7 @@ public class PizzaCompanyNameValidator extends BaseStringValidator {
                final String[] requiredFields = {"companyName"}; //NOI18N
 
                // Pre-validation (example: not null, not a string, empty string ...)
-               super.preValidate(context, component, value, requiredFields, false);
+               super.preValidate(context, component, value, requiredFields, Boolean.FALSE);
 
                // Convert name to string (now securely checked in BaseStringValidator)
                final String companyName = (String) value;
@@ -74,7 +74,7 @@ public class PizzaCompanyNameValidator extends BaseStringValidator {
                // Default is to check on existing names
                Boolean checkExisting = Boolean.TRUE;
 
-               // Is attribute "allowEmptyValue" set?
+               // Is attribute "checkExisting" set?
                if (component.getAttributes().containsKey("checkExisting")) { //NOI18N
                        // Get attribute
                        final Object attribute = component.getAttributes().get("checkExisting"); //NOI18N