Remove old/unused code from click handler

This commit is contained in:
cketti 2014-10-20 20:04:55 -04:00
parent 33d12e4169
commit 0ced8746af
1 changed files with 2 additions and 9 deletions

View File

@ -503,15 +503,8 @@ public class MessageViewFragment extends Fragment implements OnClickListener,
@Override
public void onClick(View view) {
switch (view.getId()) {
case R.id.download: {
((AttachmentView)view).saveFile();
break;
}
case R.id.download_remainder: {
onDownloadRemainder();
break;
}
if (view.getId() == R.id.download_remainder) {
onDownloadRemainder();
}
}