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 23, 2023
1 parent 21b290e commit baa86a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .packit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,12 @@ jobs:
branch: master
additional_repos:
- "https://download.copr.fedorainfracloud.org/results/%40pki/master/rhel-9-x86_64/"
- "https://download.copr.fedorainfracloud.org/results/%40pki/master/fedora-37-x86_64"
- "https://download.copr.fedorainfracloud.org/results/%40pki/master/fedora-38-x86_64"
- "https://download.copr.fedorainfracloud.org/results/%40pki/master/fedora-rawhide-x86_64"
- "https://download.copr.fedorainfracloud.org/results/%40pki/master/centos-stream-9-x86_64"
targets:
- fedora-development
- fedora-all
- centos-stream-9-x86_64
- rhel-9-x86_64

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 baa86a8

Please sign in to comment.