Skip to content

Commit

Permalink
♻️ remove println statement
Browse files Browse the repository at this point in the history
  • Loading branch information
kmkim2689 committed Oct 6, 2024
1 parent 305681a commit e6615e6
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ class FollowPagingSource(
return runCatching {
val users = fetchUsers()
val pageData = users.getOrNull() ?: emptyList()
println(pageData.size)
println(params.loadSize)
val nextKey = if (pageData.size < params.loadSize) null else pageNumber + 1
LoadResult.Page(
data = pageData,
Expand Down

0 comments on commit e6615e6

Please sign in to comment.