mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-05 08:45:08 -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));
|
||||
|
||||
// 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();
|
||||
}
|
||||
}
|
||||
|
||||
// The list should now be shown.
|
||||
if (isResumed()) {
|
||||
|
Loading…
Reference in New Issue
Block a user