Skip to content

Commit

Permalink
style: spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook02 committed Feb 12, 2024
1 parent c7a2e6e commit 10ff2c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ public class OnboardingMemberService {
public void signupMember(MemberSignupRequest request) {
Member currentMember = memberUtil.getCurrentMember();
currentMember.signup(
request.studentId(),
request.name(),
request.phone(),
request.department(),
request.email());
request.studentId(), request.name(), request.phone(), request.department(), request.email());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,7 @@ public static Member createGuestMember(String oauthId) {
.build();
}

public void signup(
String studentId,
String name,
String phone,
String department,
String email) {
public void signup(String studentId, String name, String phone, String department, String email) {
validateStatusUpdatable();
validateUnivStatus();

Expand Down

0 comments on commit 10ff2c4

Please sign in to comment.