Skip to content

Commit

Permalink
🔥 remove redundant println code
Browse files Browse the repository at this point in the history
  • Loading branch information
kmkim2689 committed Jul 25, 2024
1 parent 6e137ca commit 95bc378
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ class SearchPagingSource : PagingSource<Int, SearchData>() {
val prevKey = if (page == 0) null else page - 1
val nextKey = if (data.isEmpty()) null else page + 1

println("nextKey : $nextKey")

LoadResult.Page(
data = data,
prevKey = prevKey,
Expand Down

0 comments on commit 95bc378

Please sign in to comment.