mirror of
https://codeberg.org/PGPainless/cert-d-pgpainless.git
synced 2024-12-22 05:17:56 +01:00
Fix typo
This commit is contained in:
parent
27ae686d52
commit
d8a060d0df
1 changed files with 4 additions and 4 deletions
|
@ -34,16 +34,16 @@ public class Get implements Runnable {
|
||||||
paramLabel = "IDENTIFIER",
|
paramLabel = "IDENTIFIER",
|
||||||
arity = "1"
|
arity = "1"
|
||||||
)
|
)
|
||||||
String identifer;
|
String identifier;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
try {
|
try {
|
||||||
KeyMaterial record;
|
KeyMaterial record;
|
||||||
if (SpecialNames.lookupSpecialName(identifer) != null) {
|
if (SpecialNames.lookupSpecialName(identifier) != null) {
|
||||||
record = PGPCertDCli.getCertificateDirectory().getBySpecialName(identifer);
|
record = PGPCertDCli.getCertificateDirectory().getBySpecialName(identifier);
|
||||||
} else {
|
} else {
|
||||||
record = PGPCertDCli.getCertificateDirectory().getByFingerprint(identifer.toLowerCase());
|
record = PGPCertDCli.getCertificateDirectory().getByFingerprint(identifier.toLowerCase());
|
||||||
}
|
}
|
||||||
if (record == null) {
|
if (record == null) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue