mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-12-25 16:38:50 -05:00
small change to make android studio recognize a honeycomb-only block
This commit is contained in:
parent
dcf268bcb2
commit
9c9fc5330a
@ -292,9 +292,11 @@ public class KeyListFragment extends LoaderFragment
|
|||||||
mStickyList.setEmptyView(getActivity().findViewById(R.id.key_list_empty));
|
mStickyList.setEmptyView(getActivity().findViewById(R.id.key_list_empty));
|
||||||
|
|
||||||
// end action mode, if any
|
// end action mode, if any
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB && mActionMode != null) {
|
if (mActionMode != null) {
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
|
||||||
mActionMode.finish();
|
mActionMode.finish();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// The list should now be shown.
|
// The list should now be shown.
|
||||||
if (isResumed()) {
|
if (isResumed()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user