[java-idp-plugin-oidc-rp] branch main updated: Add missing final
Phil Smart
philip.smart at jisc.ac.uk
Mon Aug 28 21:02:49 UTC 2023
This is an automated email from the git hooks/post-receive script.
philsmart pushed a commit to branch main
in repository java-idp-plugin-oidc-rp.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-oidc-rp.git;a=commit;h=deeaa1c0f3c623c9438022835be750d4944f1865
The following commit(s) were added to refs/heads/main by this push:
new deeaa1c Add missing final
deeaa1c is described below
commit deeaa1c0f3c623c9438022835be750d4944f1865
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Mon Aug 28 22:02:26 2023 +0100
Add missing final
---
.../plugin/authn/oidc/rp/impl/AbstractHttpOIDCAuthenticationAction.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/AbstractHttpOIDCAuthenticationAction.java b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/AbstractHttpOIDCAuthenticationAction.java
index 77facee..9e71ff3 100644
--- a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/AbstractHttpOIDCAuthenticationAction.java
+++ b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/AbstractHttpOIDCAuthenticationAction.java
@@ -167,7 +167,7 @@ public abstract class AbstractHttpOIDCAuthenticationAction<T extends Response>
if (request == null) {
throw new OIDCRPException("Unable to encode HTTP request");
}
- try (ClassicHttpResponse response = executeHttpRequest(request, authenticatableContext)){
+ try (final ClassicHttpResponse response = executeHttpRequest(request, authenticatableContext)){
final T responseObject = getHttpResponseDecoderStrategy().apply(response);
if (responseObject == null) {
throw new OIDCRPException("Unable to process HTTP response");
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list