mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-25 02:02:16 -05:00
Lint fixes
This commit is contained in:
parent
e515a49027
commit
fab79b605f
@ -67,7 +67,7 @@ public class OpenPgpUtils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static String convertKeyIdToHex32bit(long keyId) {
|
private static String convertKeyIdToHex32bit(long keyId) {
|
||||||
String hexString = Long.toHexString(keyId & 0xffffffffL).toLowerCase(Locale.US);
|
String hexString = Long.toHexString(keyId & 0xffffffffL).toLowerCase(Locale.ENGLISH);
|
||||||
while (hexString.length() < 8) {
|
while (hexString.length() < 8) {
|
||||||
hexString = "0" + hexString;
|
hexString = "0" + hexString;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user