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
@@ -67,7 +67,7 @@ public void populateTask(String taskId) {
67
67
68
68
@Override
69
69
publicvoidonTaskLoaded(Tasktask) {
70
-
// The View may not be on screen anymore when this callback is returned
70
+
// 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
@@ -73,7 +73,7 @@ public void onTasksLoaded(List<Task> tasks) {
73
73
activeTasks += 1;
74
74
}
75
75
}
76
-
// The View may not be on screen anymore when this callback is returned
76
+
// The view may not be able to handle UI updates anymore
77
77
if (!mStatisticsView.isActive()) {
78
78
return;
79
79
}
@@ -84,7 +84,7 @@ public void onTasksLoaded(List<Task> tasks) {
84
84
85
85
@Override
86
86
publicvoidonDataNotAvailable() {
87
-
// The View may not be on screen anymore when this callback is returned
87
+
// 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
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ public void openTask(@Nullable String taskId) {
0 commit comments