Skip to content

Commit

Permalink
Use Finder to find views
Browse files Browse the repository at this point in the history
  • Loading branch information
atermenji committed Nov 2, 2013
1 parent f5db7f2 commit 9a3a867
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ private void showCollaboratorOptions() {
finder.find(id.tv_assignee_label).setVisibility(View.VISIBLE);
finder.find(id.ll_assignee).setVisibility(View.VISIBLE);

findViewById(id.ll_milestone).setOnClickListener(new OnClickListener() {
finder.onClick(id.ll_milestone, new OnClickListener() {

@Override
public void onClick(View v) {
Expand All @@ -249,7 +249,7 @@ public void onClick(View v) {
}
});

findViewById(id.ll_assignee).setOnClickListener(new OnClickListener() {
finder.onClick(id.ll_assignee, new OnClickListener() {

@Override
public void onClick(View v) {
Expand All @@ -261,7 +261,7 @@ public void onClick(View v) {
}
});

findViewById(id.ll_labels).setOnClickListener(new OnClickListener() {
finder.onClick(id.ll_labels, new OnClickListener() {

@Override
public void onClick(View v) {
Expand Down

0 comments on commit 9a3a867

Please sign in to comment.