Skip to content

Commit 2c59f3e

Browse files
author
github-actions
committed
chore: Java 스타일 수정
1 parent a88a6e6 commit 2c59f3e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • NBE_5_7_2_02TEAM/src/main/java/io/twogether/nbe_5_7_2_02team/post/service

NBE_5_7_2_02TEAM/src/main/java/io/twogether/nbe_5_7_2_02team/post/service/PostService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public PostResponse updatePost(Long postId, PostUpdateRequest request, Long memb
9292
List<String> savedPaths = imageUploader.saveImages(request.getImages(), postId);
9393
updatePost.setImageUrls(savedPaths);
9494
}
95-
95+
9696
postTagRepository.deleteAllByPost(updatePost);
9797
if (request.getTags() != null) {
9898
List<PostTag> newTags = postMapper.toPostTags(updatePost, request.getTags());
@@ -106,7 +106,7 @@ public PostResponse updatePost(Long postId, PostUpdateRequest request, Long memb
106106
postMapper.toRecruitmentFields(updatePost, request.getRecruitmentFields());
107107
updatePost.getRecruitmentFields().addAll(newFields);
108108
}
109-
109+
110110
return new PostResponse(updatePost.getId());
111111
}
112112

0 commit comments

Comments
 (0)