Skip to content
Snippets Groups Projects
Commit 194b1aed authored by ribeaudc's avatar ribeaudc
Browse files

[LMS-467] - Bad side of having parameters that are all of the same type...

SVN: 6888
parent 2e1b8da2
No related merge requests found
...@@ -121,8 +121,8 @@ public class PasswordEditorCommand ...@@ -121,8 +121,8 @@ public class PasswordEditorCommand
password = readPassword(ENTER_NEW_PASSWORD_MSG); password = readPassword(ENTER_NEW_PASSWORD_MSG);
} }
final UserEntry user = final UserEntry user =
new UserEntry(params.getUserId(), params.getFirstName(), params new UserEntry(params.getUserId(), params.getEmail(), params
.getLastName(), params.getEmail(), password); .getFirstName(), params.getLastName(), password);
userStore.addOrUpdateUser(user); userStore.addOrUpdateUser(user);
break; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment