Skip to content

Commit

Permalink
[chore] 사용하지 않는 () 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
kimhyun5u committed Aug 15, 2024
1 parent dc494b1 commit 9b89988
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class SignUpCustomerService {
private final PasswordEncoder passwordEncoder;

public SignUpCustomerService(CustomerRepository customerRepository, PayAccountRepository payAccountRepository,
PasswordEncoder passwordEncoder) {
PasswordEncoder passwordEncoder) {
this.customerRepository = customerRepository;
this.payAccountRepository = payAccountRepository;
this.passwordEncoder = passwordEncoder;
Expand All @@ -33,7 +33,7 @@ public SignUpCustomerService(CustomerRepository customerRepository, PayAccountRe
* @throws InvalidCreationException 구매자 생성에 오류가 나는 경우
* @throws DuplicateEmailException 이메일이 중복되는 경우
*/
@Transactional()
@Transactional
public String signUp(SignUpCustomerCommand cmd) {
PayAccount payAccount = new PayAccount();
payAccountRepository.save(payAccount);
Expand Down

0 comments on commit 9b89988

Please sign in to comment.