Skip to content

Commit

Permalink
Chore: 소문자 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
KoungQ committed Jul 7, 2024
1 parent 294c9fa commit d5e770c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@Mapper(componentModel = MappingConstants.ComponentModel.SPRING, unmappedTargetPolicy = ReportingPolicy.IGNORE)
public interface UserMapper {

UserMapper INStANCE = Mappers.getMapper(UserMapper.class);
UserMapper INSTANCE = Mappers.getMapper(UserMapper.class);

// 수정: 모든 mapper 어노테이션 매핑 최소화
@Mappings({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class UserService {

private final UserRepository userRepository;
private final UserMapper mapper = UserMapper.INStANCE;
private final UserMapper mapper = UserMapper.INSTANCE;
private final PasswordEncoder passwordEncoder;

public void signUp(UserDTO.SignUp requestDto) {
Expand Down

0 comments on commit d5e770c

Please sign in to comment.