You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: todo-mvp/app/src/main/java/com/example/android/architecture/blueprints/todoapp/addedittask/AddEditTaskPresenter.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ public void populateTask(String taskId) {
66
66
67
67
@Override
68
68
publicvoidonTaskLoaded(Tasktask) {
69
-
// The View may not be on screen anymore when this callback is returned
69
+
// The view may not be able to handle UI updates anymore
Copy file name to clipboardExpand all lines: todo-mvp/app/src/main/java/com/example/android/architecture/blueprints/todoapp/statistics/StatisticsPresenter.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ public void onTasksLoaded(List<Task> tasks) {
77
77
activeTasks += 1;
78
78
}
79
79
}
80
-
// The View may not be on screen anymore when this callback is returned
80
+
// The view may not be able to handle UI updates anymore
81
81
if (!mStatisticsView.isActive()) {
82
82
return;
83
83
}
@@ -88,7 +88,7 @@ public void onTasksLoaded(List<Task> tasks) {
88
88
89
89
@Override
90
90
publicvoidonDataNotAvailable() {
91
-
// The View may not be on screen anymore when this callback is returned
91
+
// The view may not be able to handle UI updates anymore
Copy file name to clipboardExpand all lines: todo-mvp/app/src/main/java/com/example/android/architecture/blueprints/todoapp/taskdetail/TaskDetailPresenter.java
0 commit comments