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
1 changed files with 3 additions and 2 deletions

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