Skip to content

Commit

Permalink
fix: null -> Optional.empty()
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyu0218 committed Aug 21, 2024
1 parent e3d362e commit 09cd472
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private List<MissionVerificationResponse> sortMissionVerifications(final Member
Member member1 = missionMember.getMember();
MissionVerification missionVerification = map.get(member1.getId());
if (missionVerification == null) {
MissionVerificationResponse missionVerificationResponse = MissionVerificationResponse.of(member1, null, null);
MissionVerificationResponse missionVerificationResponse = MissionVerificationResponse.of(member1, Optional.empty(), Optional.empty());
response.add(missionVerificationResponse);
} else {
MissionVerificationView missionVerificationView = missionVerificationViewRepository.getMissionVerificationView(missionVerification.getId(), member1.getId());
Expand Down

0 comments on commit 09cd472

Please sign in to comment.