From de23ade14b517bbba9b2b312501d3be3d16541a8 Mon Sep 17 00:00:00 2001 From: jieun Date: Sun, 25 Jan 2026 16:03:00 +0900 Subject: [PATCH] Remove compiler warnings for spring-security-cas:check Signed-off-by: jieun --- cas/spring-security-cas.gradle | 1 + .../security/cas/web/CasAuthenticationEntryPoint.java | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/cas/spring-security-cas.gradle b/cas/spring-security-cas.gradle index bb4f9e8729..addd00a5f0 100644 --- a/cas/spring-security-cas.gradle +++ b/cas/spring-security-cas.gradle @@ -1,6 +1,7 @@ plugins { id 'security-nullability' id 'javadoc-warnings-error' + id 'compile-warnings-error' } apply plugin: 'io.spring.convention.spring-module' diff --git a/cas/src/main/java/org/springframework/security/cas/web/CasAuthenticationEntryPoint.java b/cas/src/main/java/org/springframework/security/cas/web/CasAuthenticationEntryPoint.java index 59aaff4474..0039302bc9 100644 --- a/cas/src/main/java/org/springframework/security/cas/web/CasAuthenticationEntryPoint.java +++ b/cas/src/main/java/org/springframework/security/cas/web/CasAuthenticationEntryPoint.java @@ -91,7 +91,8 @@ public class CasAuthenticationEntryPoint implements AuthenticationEntryPoint, In */ protected String createServiceUrl(HttpServletRequest request, HttpServletResponse response) { return WebUtils.constructServiceUrl(null, response, this.serviceProperties.getService(), null, - this.serviceProperties.getArtifactParameter(), this.encodeServiceUrlWithSessionId); + this.serviceProperties.getServiceParameter(), this.serviceProperties.getArtifactParameter(), + this.encodeServiceUrlWithSessionId); } /**