Skip to content

Commit

Permalink
Fix : Code Smells 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
haeyonghahn committed Mar 5, 2024
1 parent 0ff9a1f commit 5a7d0dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ public List<RecordData> getRecord(MemberId recorderMemberId) {
}

private List<String> toRecordIds(List<RecordData> records) {
return records.stream().map(RecordData::getRecordNumber).collect(Collectors.toList());
return records.stream().map(RecordData::getRecordNumber).toList();
}
}

0 comments on commit 5a7d0dc

Please sign in to comment.