Skip to content

Commit

Permalink
Fixed whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
NataBurtnyk committed Aug 2, 2024
1 parent cf03838 commit 0c66196
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public boolean login(String email, String password) {
User user = userService.findByEmail(email);

if (user != null) {
if (user.getPassword().equals(password)){
if (user.getPassword().equals(password)) {
return true;
}
}
Expand Down

0 comments on commit 0c66196

Please sign in to comment.