Skip to content

Commit

Permalink
Merge pull request #260 from jjikky/feature/objet-paging
Browse files Browse the repository at this point in the history
오브제 목록 조회 페이징 처리 조건 타입 수정
  • Loading branch information
JiHongKim98 authored Oct 1, 2024
2 parents b4c1458 + 5738fee commit 91fcae5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ public record ObjetFindCondition(
int executeLimitSize
) {

public static ObjetFindCondition of(long loungeId, long userId, long cursor, int executeLimitSize) {
public static ObjetFindCondition of(Long loungeId, Long userId, Long cursor, int executeLimitSize) {
return new ObjetFindCondition(loungeId, userId, cursor, executeLimitSize);
}

public static ObjetFindCondition of(long loungeId, long cursor, int executeLimitSize) {
public static ObjetFindCondition of(Long loungeId, Long cursor, int executeLimitSize) {
return new ObjetFindCondition(loungeId, null, cursor, executeLimitSize);
}
}

0 comments on commit 91fcae5

Please sign in to comment.