File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/com/somemore/domains/volunteerapply/service Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,11 +60,11 @@ public Page<VolunteerApplyVolunteerInfoResponseDto> getVolunteerAppliesByRecruit
6060 recruitBoardValidator .validateWriter (recruitBoard , centerId );
6161
6262 Page <VolunteerApply > applies = volunteerApplyQueryUseCase .getAllByRecruitId (recruitBoardId , condition );
63- Map <UUID , VolunteerInfoResponseDto > volunteerMap = getVolunteerInfoMap (applies );
63+ Map <UUID , VolunteerInfoResponseDto > volunteerMapToVolunteerId = getVolunteerInfoMap (applies );
6464
6565 return applies .map (apply -> VolunteerApplyVolunteerInfoResponseDto .of (
6666 apply ,
67- volunteerMap .get (apply .getVolunteerId ())
67+ volunteerMapToVolunteerId .get (apply .getVolunteerId ())
6868 ));
6969 }
7070
@@ -74,11 +74,11 @@ public Page<VolunteerApplyRecruitInfoResponseDto> getVolunteerAppliesByVolunteer
7474 VolunteerApplySearchCondition condition
7575 ) {
7676 Page <VolunteerApply > applies = volunteerApplyQueryUseCase .getAllByVolunteerId (volunteerId , condition );
77- Map <Long , RecruitBoard > boardMap = getRecruitBoardMap (applies );
77+ Map <Long , RecruitBoard > boardMapToId = getRecruitBoardMap (applies );
7878
7979 return applies .map (apply -> VolunteerApplyRecruitInfoResponseDto .of (
8080 apply ,
81- boardMap .get (apply .getRecruitBoardId ()))
81+ boardMapToId .get (apply .getRecruitBoardId ()))
8282 );
8383 }
8484
You can’t perform that action at this time.
0 commit comments