mirror of
https://codeberg.org/PGPainless/cert-d-pgpainless.git
synced 2025-12-05 04:41:09 +01:00
Remove unnecessary int initialization
This commit is contained in:
parent
ead0bb91c6
commit
6b5c8c8fd2
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ public class Find implements Runnable {
|
|||
throw new IllegalArgumentException("No subkey ID provided.");
|
||||
}
|
||||
identifier = identifier.trim();
|
||||
long subkeyId = 0;
|
||||
long subkeyId;
|
||||
try {
|
||||
OpenPgpFingerprint fingerprint = OpenPgpFingerprint.parse(identifier);
|
||||
subkeyId = fingerprint.getKeyId();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue