Skip to content

Commit f91b122

Browse files
authored
Merge pull request #895 from dturner/main
Remove reference to Result from Async
2 parents 89b4368 + c25727a commit f91b122

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()

0 commit comments

Comments
 (0)