1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-25 09:08:49 -05: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(); int position = mListView.getSelectedItemPosition();
try try
{ {
@ -1132,9 +1133,9 @@ public class MessageList
} }
finally finally
{ {
return super.onKeyDown(keyCode, event); retval = super.onKeyDown(keyCode, event);
} }
return retval;
} }
@Override @Override