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 89b4368 commit c25727aCopy full SHA for c25727a
app/src/main/java/com/example/android/architecture/blueprints/todoapp/util/Async.kt
@@ -16,10 +16,8 @@
16
17
package com.example.android.architecture.blueprints.todoapp.util
18
19
-import com.example.android.architecture.blueprints.todoapp.data.Result
20
-
21
/**
22
- * A generic class that holds a loading signal or a [Result].
+ * A generic class that holds a loading signal or the result of an async operation.
23
*/
24
sealed class Async<out T> {
25
object Loading : Async<Nothing>()
0 commit comments