1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Rewrote code to get rid of return statement in finally block (which generated a warning).

This commit is contained in:
cketti 2011-01-19 00:23:56 +00:00
parent 72d2d24cec
commit a9cee7a6ad

View File

@ -1060,6 +1060,7 @@ public class MessageList
}
}
boolean retval = true;
int position = mListView.getSelectedItemPosition();
try
{
@ -1132,9 +1133,9 @@ public class MessageList
}
finally
{
return super.onKeyDown(keyCode, event);
retval = super.onKeyDown(keyCode, event);
}
return retval;
}
@Override