mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-25 00:58:50 -05:00
Rewrote code to get rid of return statement in finally block (which generated a warning).
This commit is contained in:
parent
72d2d24cec
commit
a9cee7a6ad
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user