Skip to content

Commit c25727a

Browse files
committed
Remove reference to Result from Async
1 parent 89b4368 commit c25727a

File tree

1 file changed

+1
-3
lines changed
  • app/src/main/java/com/example/android/architecture/blueprints/todoapp/util

1 file changed

+1
-3
lines changed

app/src/main/java/com/example/android/architecture/blueprints/todoapp/util/Async.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@
1616

1717
package com.example.android.architecture.blueprints.todoapp.util
1818

19-
import com.example.android.architecture.blueprints.todoapp.data.Result
20-
2119
/**
22-
* A generic class that holds a loading signal or a [Result].
20+
* A generic class that holds a loading signal or the result of an async operation.
2321
*/
2422
sealed class Async<out T> {
2523
object Loading : Async<Nothing>()

0 commit comments

Comments
 (0)