Skip to content

Commit

Permalink
Fix: #185 sublist 메소드 미적용으로 인한 디버그(sout) 출력 문구 추가했던 것 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeJae-H committed Nov 1, 2024
1 parent 594373c commit c6e752b
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ public List<ExampleWithSquarePicture> getAllResponseExamplesInGenerateView() {
.collect(Collectors.toList());
Collections.shuffle(examples);

System.out.println("----------SubList 시작-----------");
List<ExampleWithSquarePicture> subList = examples.subList(0, 2);
System.out.println("----------SubList 종료-----------");
return subList;
return examples.subList(0, 5);
}
}

0 comments on commit c6e752b

Please sign in to comment.