Skip to content

Commit

Permalink
added underscore to end of password in account model
Browse files Browse the repository at this point in the history
  • Loading branch information
jmsundin committed Jan 31, 2024
1 parent b74a520 commit a78fb4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/Model/Account.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void setUsername(String username) {
}
/**
* Properly named getters and setters are necessary for Jackson ObjectMapper to work. You may use them as well.
* @return password
* @return password_
*/
public String getPassword() {
return password;
Expand Down Expand Up @@ -112,7 +112,7 @@ public String toString() {
return "Account{" +
"account_id=" + account_id +
", username='" + username + '\'' +
", password_='" + password + '\'' +
", password='" + password + '\'' +
'}';
}
}

0 comments on commit a78fb4e

Please sign in to comment.