Skip to content

Commit

Permalink
Call super.onContextItemSelected()
Browse files Browse the repository at this point in the history
According to the docs implementing methods
should call the parent impl of this method.
  • Loading branch information
adrian committed Aug 12, 2012
1 parent bfb5af2 commit 0c383db
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/com/u17od/upm/AccountsList.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ public boolean onContextItemSelected(MenuItem item) {
case R.id.launch_url:
launchURL(getURL(getAccount(info.targetView)));
return true;
default:
return super.onContextItemSelected(item);
}
}
return super.onContextItemSelected(item);
}

private void setClipboardText(String text) {
Expand Down

0 comments on commit 0c383db

Please sign in to comment.