Skip to content

Commit

Permalink
[docs] 주석 설명 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunihs committed Aug 16, 2023
1 parent 4429d3d commit 64417b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public AllAwardsResponse getAllAwards(int pageNum, int limit) {

int maxGeneration = projectRepository.findMaxGeneration();
for (int i = maxGeneration; i >= 0; i--) {
if (i <= 9 && i >= 1) continue;
if (i <= 9 && i >= 1) continue; // 1~9기 정확한 정보 없어서 0으로 합쳐서 저장함
Optional<StartDate> s = startDateRepository.findById(i);
String startDate = null;
if (s.isPresent()) {
Expand Down

0 comments on commit 64417b5

Please sign in to comment.