Skip to content

Commit

Permalink
[LH-188] Merge from remote
Browse files Browse the repository at this point in the history
  • Loading branch information
YoungJun-L committed Sep 25, 2023
2 parents c7ab2e6 + e2f0859 commit f985034
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ public int calculateAge() {
return Period.between(birthday, LocalDate.now()).getYears();
}

public void updateMember(String description, String profileImageUri) {
this.description = description;
this.profileImageUri = profileImageUri;
public void updateMember(final String description, final String profileImageUri) {
if (description != null) this.description = description;
if (profileImageUri != null) this.profileImageUri = profileImageUri;
}

public void patchDescription(String description) {
public void patchDescription(final String description) {
this.description = description;
}
}

0 comments on commit f985034

Please sign in to comment.