From: Roland Haeder Date: Sat, 12 Mar 2016 12:59:02 +0000 (+0100) Subject: updated jar(s) + fixed #tpyo X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fa8121f026fd52c078c3ed3e8c1b7c46a6550beb;p=jaddressbook-lib.git updated jar(s) + fixed #tpyo --- diff --git a/lib/juser-core.jar b/lib/juser-core.jar index ac9a8682..0ec158ae 100644 Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ diff --git a/lib/juser-lib.jar b/lib/juser-lib.jar index dd11c240..d70697aa 100644 Binary files a/lib/juser-lib.jar and b/lib/juser-lib.jar differ diff --git a/src/org/mxchange/addressbook/validator/addressbook/AddressbookIdValidator.java b/src/org/mxchange/addressbook/validator/addressbook/AddressbookIdValidator.java index 97be57db..75c753ae 100644 --- a/src/org/mxchange/addressbook/validator/addressbook/AddressbookIdValidator.java +++ b/src/org/mxchange/addressbook/validator/addressbook/AddressbookIdValidator.java @@ -82,10 +82,10 @@ public class AddressbookIdValidator extends BaseLongValidator { this.loggerBeanLocal.logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N // All accepted, required fields - String[] requiredFileds = {"addressbookId"}; //NOI18N + String[] requiredFields = {"addressbookId"}; //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); // Cast to long Long addressbookId = (Long) value; diff --git a/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java b/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java index 01b0d206..e044289c 100644 --- a/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java +++ b/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java @@ -42,10 +42,10 @@ public class UserProfileVisibilityValidator extends BaseBooleanValidator impleme //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N // All accepted, required fields - String[] requiredFileds = {"publicUserProfileFlag"}; //NOI18N + String[] requiredFields = {"publicUserProfileFlag"}; //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/addressbook/validator/names/AddressbookNameValidator.java b/src/org/mxchange/addressbook/validator/names/AddressbookNameValidator.java index 06cfa412..0f883816 100644 --- a/src/org/mxchange/addressbook/validator/names/AddressbookNameValidator.java +++ b/src/org/mxchange/addressbook/validator/names/AddressbookNameValidator.java @@ -42,10 +42,10 @@ public class AddressbookNameValidator extends BaseStringValidator implements Val //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N // All accepted, required fields - String[] requiredFileds = {"addressbookName"}; //NOI18N + String[] requiredFields = {"addressbookName"}; //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/addressbook/validator/user/UserIdValidator.java b/src/org/mxchange/addressbook/validator/user/UserIdValidator.java index 1b145427..c3bdc2c7 100644 --- a/src/org/mxchange/addressbook/validator/user/UserIdValidator.java +++ b/src/org/mxchange/addressbook/validator/user/UserIdValidator.java @@ -128,10 +128,10 @@ public class UserIdValidator extends BaseLongValidator implements Validator { this.loggerBeanLocal.logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N // All accepted, required fields - String[] requiredFileds = {"userId"}; //NOI18N + String[] requiredFields = {"userId"}; //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); // Cast value Long userId = (Long) value;