Skip to content

Commit

Permalink
fix missing )
Browse files Browse the repository at this point in the history
  • Loading branch information
PacoVK committed Dec 31, 2024
1 parent c36360b commit d2cf5ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public DeployKey getDeployKeyById(String id) throws DeployKeyNotFoundException {
public DeployKey getDeployKeyByValue(String value) throws DeployKeyNotFoundException {
try {
Collection<DeployKey> deployKeys = (Collection<DeployKey>) findDeployKeys("", 1, value).getEntities();
if (deployKeys == null || deployKeys.isEmpty() {
if (deployKeys == null || deployKeys.isEmpty()) {
throw new DeployKeyNotFoundException("Could not find matching key");
}

Expand Down

0 comments on commit d2cf5ba

Please sign in to comment.