- renamed variable, more common accross projects
Signed-off-by: Roland Häder <roland@mxchange.org>
try {
// Try to parse the value as long
- final Long mobileId = Long.valueOf(submittedValue);
+ final Long mobileNumberId = Long.valueOf(submittedValue);
// Debug message
// NOISY-DEBUG: this.loggerBeanLocal.logDebug(MessageFormat.format("getAsObject: userId{0}", userId)); //NOI18N
// Try to get mobile instance from it
- mobileNumber = PHONE_BEAN.findMobileNumberById(mobileId);
+ mobileNumber = PHONE_BEAN.findMobileNumberById(mobileNumberId);
} catch (final NumberFormatException ex) {
// Throw again
throw new ConverterException(ex);