Skip to content

Commit

Permalink
Remove unnecessary else clause from nsNKeyOutput
Browse files Browse the repository at this point in the history
  • Loading branch information
ckelleyRH committed Jun 22, 2023
1 parent 8a8f320 commit a1e6ed3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .packit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
trigger: pull_request
branch: master
additional_repos:
- "https://copr.fedorainfracloud.org/coprs/g/pki/master/"
- "https://download.copr.fedorainfracloud.org/results/%40pki/master/"
targets:
- fedora-development
- centos-stream-9-x86_64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,8 @@ public String getValue(String name, Locale locale, Request request)
} catch (Exception e) {
return "";
}
} else {
return null;
}
return null;
}

}

0 comments on commit a1e6ed3

Please sign in to comment.