Skip to content

Commit

Permalink
refactor: 상수 값 SchedulerService 내로 복구
Browse files Browse the repository at this point in the history
현재 서비스 상에서 별도의 SchedulerConstant로 상수를 관리할 필요가 없다고 판단해서 해당 클래스 삭제
  • Loading branch information
jemin committed May 1, 2024
1 parent 07b6019 commit fd433ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.backend.global.scheduler;

import static com.backend.global.scheduler.SchedulerConstant.*;

import java.time.LocalDate;
import java.time.LocalTime;
import java.util.List;
Expand All @@ -23,6 +21,8 @@
@RequiredArgsConstructor
public class SchedulerService {

private static final String LOCAL_TIME_ZONE = "Asia/Seoul";

private final GoalQueryRepository goalQueryRepository;

private final DetailGoalQueryRepository detailGoalQueryRepository;
Expand Down

0 comments on commit fd433ab

Please sign in to comment.