mirror of
https://github.com/moparisthebest/open-keychain
synced 2025-01-12 05:58:07 -05:00
Code Style fix
This commit is contained in:
parent
fa439c1a72
commit
163e9fddb9
@ -266,8 +266,8 @@ public class ViewKeyMainFragment extends Fragment implements
|
||||
if (data.moveToFirst()) {
|
||||
// get key id from MASTER_KEY_ID
|
||||
long keyId = data.getLong(KEYS_INDEX_KEY_ID);
|
||||
long can_encrypt = data.getLong(KEYS_INDEX_CAN_ENCRYPT);
|
||||
if(can_encrypt == 0){
|
||||
long canEncrypt = data.getLong(KEYS_INDEX_CAN_ENCRYPT);
|
||||
if(canEncrypt == 0){
|
||||
mActionEncrypt.setVisibility(View.GONE);
|
||||
}
|
||||
String keyIdStr = PgpKeyHelper.convertKeyIdToHex(keyId);
|
||||
|
Loading…
Reference in New Issue
Block a user