Skip to content

Commit

Permalink
[FIX] #811 java version issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wken5577 committed Apr 7, 2024
1 parent 6ca73a4 commit 0a1dec8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import java.time.LocalDateTime;
import java.util.List;
import java.util.stream.Collectors;

import gg.recruit.api.admin.service.result.RecruitmentDetailAdminSvcDto;
import lombok.Getter;
Expand All @@ -24,6 +25,6 @@ public RecruitmentAdminDetailResDto(RecruitmentDetailAdminSvcDto recruitmentDeta
this.contents = recruitmentDetail.getContents();
this.generation = recruitmentDetail.getGeneration();
this.forms = recruitmentDetail.getForms().stream()
.map(FormDetailAdminResDto::new).toList();
.map(FormDetailAdminResDto::new).collect(Collectors.toList());
}
}

0 comments on commit 0a1dec8

Please sign in to comment.