Skip to content

Commit

Permalink
[REFACT] FetchJoin과 Pagination 사용으로 인해 발생하는 warn 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
JIN-076 committed Feb 26, 2024
1 parent 972d175 commit 4f97504
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public CursorPaginationResult<ProjectDetailAPIRes> findByConditionWithPagination
List<Project> entities = jpaQueryFactory.selectFrom(project)
.innerJoin(project.creator, user)
.on(project.creator.id.eq(user.id))
.join(project.projectTags).fetchJoin()
.where(
cursorIdCondition(pageable.getCursorId()),
userIdEq(userId),
Expand Down

0 comments on commit 4f97504

Please sign in to comment.