Skip to content

Commit

Permalink
[WHD-228] Chore: Add static keyword to constant variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jjunhub committed Nov 8, 2024
1 parent ca4edee commit b32268c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
@RequiredArgsConstructor
public class EmailClientImpl implements EmailClient {

private final String CLUB_INVITE_EMAIL_SUBJECT = "%s 동아리 초대장입니다.";
private final String CLUB_INFO_CHANGED_EMAIL_SUBJECT = "%s 동아리 정보가 변경되었습니다.";
private final String SCHEDULE_NOTICE_EMAIL_SUBJECT = "%s 동아리에 새로운 일정이 등록되었습니다!";
private final static String CLUB_INVITE_EMAIL_SUBJECT = "%s 동아리 초대장입니다.";
private final static String CLUB_INFO_CHANGED_EMAIL_SUBJECT = "%s 동아리 정보가 변경되었습니다.";
private final static String SCHEDULE_NOTICE_EMAIL_SUBJECT = "%s 동아리에 새로운 일정이 등록되었습니다!";

private final JavaMailSender mailSender;

Expand Down

0 comments on commit b32268c

Please sign in to comment.