Skip to content

Commit

Permalink
Add final keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
romanstrobl committed Jan 28, 2025
1 parent 5f00811 commit 1a20cc0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ private boolean isMaxAttemptsPositive(final CallbackUrlEntity callbackUrlEntity)
*/
private void validateAuthenticationConfigRequest(HttpAuthenticationPrivate authentication, String callbackUrl) throws GenericServiceException {
if (authentication != null && authentication.getCertificate() != null) {
HttpAuthenticationPrivate.Certificate certificate = authentication.getCertificate();
final HttpAuthenticationPrivate.Certificate certificate = authentication.getCertificate();

if (certificate.isUseCustomKeyStore() &&
StringUtils.hasText(certificate.getKeyStoreLocation()) &&
Expand Down

0 comments on commit 1a20cc0

Please sign in to comment.