Skip to content

Commit

Permalink
[del] 필요없는 부분 제거 (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarlgnszx committed Sep 26, 2024
1 parent 6784c82 commit bad4f97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/sopt/app/facade/PokeFacade.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public Long pokeFriend(Long pokerUserId, Long pokedUserId, String pokeMessage, B
pokeHistoryService.checkDuplicate(pokerUserId, pokedUserId);
PokeHistory newPoke = pokeService.poke(pokerUserId, pokedUserId, pokeMessage, isAnonymous);

this.applyFriendship(pokerUserId, pokedUserId);
applyFriendship(pokerUserId, pokedUserId);
return newPoke.getId();
}

Expand Down

0 comments on commit bad4f97

Please sign in to comment.