From e4189667e499843dff75fb3c03752394de647571 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sat, 12 Mar 2016 18:09:50 +0100 Subject: [PATCH] fkxed #tpyos --- .../bool/privacy_terms/PrivacyTermsCheckboxValidator.java | 4 ++-- .../validator/number/item_amount/ItemAmountValidator.java | 4 ++-- .../jcoreee/validator/string/names/NameValidator.java | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java b/src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java index 0f22112..e821250 100644 --- a/src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java +++ b/src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java @@ -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 diff --git a/src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java b/src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java index 1543d2b..204a70f 100644 --- a/src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java +++ b/src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java @@ -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 diff --git a/src/org/mxchange/jcoreee/validator/string/names/NameValidator.java b/src/org/mxchange/jcoreee/validator/string/names/NameValidator.java index 6114c4d..c12bef1 100644 --- a/src/org/mxchange/jcoreee/validator/string/names/NameValidator.java +++ b/src/org/mxchange/jcoreee/validator/string/names/NameValidator.java @@ -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 -- 2.39.5