Skip to content

Commit

Permalink
fix: 메서드 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonyworld committed Jan 16, 2025
1 parent 12da45b commit bbfd1d9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ static LocalDateTime getEndDate(String date) {

@Named("getLightningPlaceType")
static LightningPlaceType getLightningPlaceType(String placeType) {
return LightningPlaceType.valueOf(placeType);
return LightningPlaceType.ofValue(placeType);
}

@Named("getLightningTimingType")
static LightningTimingType getLightningTimingType(String timingType) {
return LightningTimingType.valueOf(timingType);
return LightningTimingType.ofValue(timingType);
}
}

0 comments on commit bbfd1d9

Please sign in to comment.