Skip to content

Commit

Permalink
Always return an array
Browse files Browse the repository at this point in the history
  • Loading branch information
zendern committed Mar 7, 2022
1 parent 075cb6c commit e960455
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ protected X509Certificate[] getFullCertificateChain() {
if (LOG.isWarnEnabled()) {
LOG.warn("Could not create certificate from file", e);
}
return null;
return new X509Certificate[]{};
}
}

Expand Down

0 comments on commit e960455

Please sign in to comment.