]> git.mxchange.org Git - jcore-utils.git/commitdiff
fkxed #tpyos
authorRoland Haeder <roland@mxchange.org>
Sat, 12 Mar 2016 17:09:50 +0000 (18:09 +0100)
committerRoland Haeder <roland@mxchange.org>
Sat, 12 Mar 2016 17:09:50 +0000 (18:09 +0100)
src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java
src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java
src/org/mxchange/jcoreee/validator/string/names/NameValidator.java

index 0f22112d6018aa05e3a6ea7a263cb1cacaefda14..e8212506c31fd37836732ab8e395ab826fa38130 100644 (file)
@@ -42,10 +42,10 @@ public class PrivacyTermsCheckboxValidator extends BaseBooleanValidator implemen
                //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
 
                // All accepted, required fields
-               String[] requiredFileds = {"privacy", "terms"}; //NOI18N
+               String[] requiredFields = {"privacy", "terms"}; //NOI18N
 
                // Pre-validation (example: not null, not a string, empty string ...)
-               super.preValidate(context, component, value, requiredFileds, false);
+               super.preValidate(context, component, value, requiredFields, false);
 
                // Trace message
                //this.getLogger().logTrace("validate: EXIT!"); //NOI18N
index 1543d2b8ba3e16ee0098924e9d5797c0931cc1fb..204a70fcc3a67e4bcb9b5871977d52506b82e691 100644 (file)
@@ -42,10 +42,10 @@ public class ItemAmountValidator extends BaseLongValidator implements Validator
                //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
 
                // The required field
-               String[] requiredFileds = {"amount"}; //NOI18N
+               String[] requiredFields = {"amount"}; //NOI18N
 
                // Pre-validation (example: not null, not a string, empty string ...)
-               super.preValidate(context, component, value, requiredFileds, false);
+               super.preValidate(context, component, value, requiredFields, false);
 
                // Trace message
                //this.getLogger().logTrace("validate: EXIT!"); //NOI18N
index 6114c4d7ad45e0ab73825f5bcfd7ee2944722c0b..c12bef1ad2e1994f7983a21227750f875bc31cf6 100644 (file)
@@ -42,10 +42,10 @@ public class NameValidator extends BaseStringValidator implements Validator {
                //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
 
                // All accepted, required fields
-               String[] requiredFileds = {"firstName", "familyName", "city", "street"}; //NOI18N
+               String[] requiredFields = {"firstName", "familyName", "city", "street"}; //NOI18N
 
                // Pre-validation (example: not null, not a string, empty string ...)
-               super.preValidate(context, component, value, requiredFileds, true);
+               super.preValidate(context, component, value, requiredFields, true);
 
                // Trace message
                //this.getLogger().logTrace("validate: EXIT!"); //NOI18N