Skip to content

Commit

Permalink
[REMOVE] 메서드 첫줄 개행 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
rinarina0429 committed Aug 6, 2024
1 parent e218e94 commit fcc4809
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/org/websoso/WSSServer/service/NovelService.java
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,6 @@ private List<KeywordCountGetResponse> getKeywords(Novel novel) {
@Transactional(readOnly = true)
public FilteredNovelsGetResponse getFilteredNovels(List<String> genreNames, Boolean isCompleted, Float novelRating,
List<Integer> keywordIds, int page, int size) {

PageRequest pageRequest = PageRequest.of(page, size);
List<Genre> genres = getGenres(genreNames);
List<Keyword> keywords = getKeywords(keywordIds);
Expand All @@ -264,7 +263,6 @@ public FilteredNovelsGetResponse getFilteredNovels(List<String> genreNames, Bool
}

private List<Genre> getGenres(List<String> genreNames) {

genreNames = genreNames == null
? Collections.emptyList()
: genreNames;
Expand All @@ -280,7 +278,6 @@ private List<Genre> getGenres(List<String> genreNames) {
}

private List<Keyword> getKeywords(List<Integer> keywordIds) {

keywordIds = keywordIds == null
? Collections.emptyList()
: keywordIds;
Expand All @@ -296,7 +293,6 @@ private List<Keyword> getKeywords(List<Integer> keywordIds) {
}

private NovelGetResponsePreview convertToDTO(Novel novel) {

List<UserNovel> userNovels = novel.getUserNovels();

long interestCount = userNovels.stream()
Expand Down

0 comments on commit fcc4809

Please sign in to comment.