Skip to content

Commit

Permalink
Google Java Format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 6, 2024
1 parent 58425da commit 661de47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public void addRequest(final FriendRequest friendRequest) {
final Member member = memberService.getMemberById(friendRequest.getMemberId());
friendRepository.save(friendMapper.toEntity(loginMember, member));

sendNotification(member.getDeviceTokenValue(), loginMember.getNickname(), loginMember.getId());
sendNotification(
member.getDeviceTokenValue(), loginMember.getNickname(), loginMember.getId());
}

private void sendNotification(final String deviceToken, final String nickname, final UUID id) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ public PlanResponse invitePlan(PlanMemberRequest request) {
return planMapper.toPlanResponse(plan);
}

private void sendRequestNotification(final String deviceToken, final String planName, final UUID id) {
private void sendRequestNotification(
final String deviceToken, final String planName, final UUID id) {
fcmProducer.sendNotification(
new NotificationRequest(
deviceToken,
Expand Down

0 comments on commit 661de47

Please sign in to comment.