Skip to content

Commit

Permalink
fix: cursor value null 반환
Browse files Browse the repository at this point in the history
  • Loading branch information
GaBaljaintheroom committed Sep 20, 2024
1 parent 434accb commit 1a38b75
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ public static CursorApiResponse toCursorResponse(UUID id, Object value) {
}

public static CursorApiResponse toCursorId(UUID id) {
return new CursorApiResponse(id, "");
return new CursorApiResponse(id, null);
}

public static CursorApiResponse noneCursor() {
return new CursorApiResponse(null, "");
return new CursorApiResponse(null, null);
}

public static <T> T getLastElement(List<T> list) {
Expand Down

0 comments on commit 1a38b75

Please sign in to comment.