Skip to content

Commit 1aabaf4

Browse files
committed
Format nits
1 parent a8dabba commit 1aabaf4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

todo-mvp/app/src/main/java/com/example/android/architecture/blueprints/todoapp/tasks/TasksFragment.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,10 +389,10 @@ public View getView(int i, View view, ViewGroup viewGroup) {
389389
completeCB.setChecked(task.isCompleted());
390390
if (task.isCompleted()) {
391391
rowView.setBackgroundDrawable(viewGroup.getContext()
392-
.getResources().getDrawable(R.drawable.list_completed_touch_feedback));
392+
.getResources().getDrawable(R.drawable.list_completed_touch_feedback));
393393
} else {
394394
rowView.setBackgroundDrawable(viewGroup.getContext()
395-
.getResources().getDrawable(R.drawable.touch_feedback));
395+
.getResources().getDrawable(R.drawable.touch_feedback));
396396
}
397397

398398
completeCB.setOnClickListener(new View.OnClickListener() {

todo-mvp/app/src/main/java/com/example/android/architecture/blueprints/todoapp/tasks/TasksPresenter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,8 @@ public void clearCompletedTasks() {
221221
* Sets the current task filtering type.
222222
*
223223
* @param requestType Can be {@link TasksFilterType#ALL_TASKS},
224-
* {@link TasksFilterType#COMPLETED_TASKS}, or {@link TasksFilterType#ACTIVE_TASKS}
224+
* {@link TasksFilterType#COMPLETED_TASKS}, or
225+
* {@link TasksFilterType#ACTIVE_TASKS}
225226
*/
226227
@Override
227228
public void setFiltering(TasksFilterType requestType) {

0 commit comments

Comments
 (0)