]> git.mxchange.org Git - jfinancials-lib.git/blobdiff - src/org/mxchange/addressbook/validator/user/UserIdValidator.java
updated jar(s) + fixed #tpyo
[jfinancials-lib.git] / src / org / mxchange / addressbook / validator / user / UserIdValidator.java
index 1b14542779c2232929b687ee62483fc2e93968c8..c3bdc2c79e208054ee778ca53801777643daaca0 100644 (file)
@@ -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;