Skip to content

Commit

Permalink
chore(MeetingV2GetRecommendDto): of -> from 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Jan 7, 2025
1 parent 7842eb0 commit 5977de5
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 @@ -13,7 +13,7 @@ public record MeetingV2GetRecommendDto(
@NotNull
List<MeetingResponseDto> meetings
) {
public static MeetingV2GetRecommendDto of(List<MeetingResponseDto> meetings) {
public static MeetingV2GetRecommendDto from(List<MeetingResponseDto> meetings) {
return new MeetingV2GetRecommendDto(meetings);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ public MeetingV2GetRecommendDto getRecommendMeetingsByIds(List<Integer> meetingI
allApplies.getApprovedCount(meeting.getId()), time.now()))
.toList();

return MeetingV2GetRecommendDto.of(meetingResponseDtos);
return MeetingV2GetRecommendDto.from(meetingResponseDtos);
}

private void deleteCsvFile(String filePath) {
Expand Down

0 comments on commit 5977de5

Please sign in to comment.