Skip to content

Commit

Permalink
[refactor] : 유저 프로필 이미지 유효성 검사 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkJuhan94 committed Feb 20, 2024
1 parent 4f1fd60 commit a775a78
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions core/src/main/java/dev/handsup/user/domain/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,12 @@ public User(
String password,
String nickname,
Address address,
String profileImageUrl
) {
validateUser(email, password, nickname, address, profileImageUrl);
validateUser(email, password, nickname, address);
this.email = email;
this.password = password;
this.nickname = nickname;
this.address = address;
this.profileImageUrl = profileImageUrl;
}

public static User of(
Expand Down

0 comments on commit a775a78

Please sign in to comment.