Skip to content

Commit

Permalink
chore : 통계 정보에서 id 값을 제공하지 않도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
joon6093 committed Jun 27, 2024
1 parent be361a2 commit b459b80
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
@NoArgsConstructor
@AllArgsConstructor
public class StatisticDTO {
private Long id;
private String result;
private Long count;
private Long matchCount;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public void createTestResult(TestResultRequest req) {
public List<StatisticDTO> readStatistics() {
return statisticRepository.findAll().stream()
.map(statistic -> new StatisticDTO(
statistic.getId(),
statistic.getDeveloperProfile().getResult(),
statistic.getCount(),
statistic.getMatchCount(),
Expand Down

0 comments on commit b459b80

Please sign in to comment.