We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3995892 commit acaff03Copy full SHA for acaff03
1 file changed
src/main/java/com/microfocus/example/service/UserService.java
@@ -125,7 +125,7 @@ public boolean userExistsById(UUID id) {
125
return userRepository.existsById(id);
126
}
127
128
- private final String PASSWORD = "Encrypting the password.";
+ private final String PASSWORD = "Encrypting the password";
129
130
public User registerUser(RegisterUserForm newUser) throws UsernameTakenException, EmailAddressTakenException {
131
if (findUserByUsername(newUser.getUsername()).isPresent()) {
0 commit comments