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:
parent
72d2d24cec
commit
a9cee7a6ad
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user