We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56dd3b7 commit f26087eCopy full SHA for f26087e
tutorial/kotlin-android/app/src/main/java/com/mongodb/tasktracker/TaskActivity.kt
@@ -137,7 +137,7 @@ class TaskActivity : AppCompatActivity() {
137
// Realm provides RealmRecyclerViewAdapter, which you can extend to customize for your application
138
// pass the adapter a collection of Tasks from the realm
139
// sort this collection so that the displayed order of Tasks remains stable across updates
140
- // :code-block-start:
+ // :code-block-start: fetch-tasks-for-project-sorted-by-id
141
// :hide-start:
142
adapter = TaskAdapter(realm.where<Task>().sort("_id").findAll(), user!!, partition)
143
// :replace-with:
0 commit comments