Skip to content

Commit f4b2184

Browse files
committed
Remove compiler warnings for spring-security-cas:check
Signed-off-by: jieun <[email protected]>
1 parent 0a182f1 commit f4b2184

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

cas/spring-security-cas.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id 'security-nullability'
33
id 'javadoc-warnings-error'
4+
id 'compile-warnings-error'
45
}
56

67
apply plugin: 'io.spring.convention.spring-module'

cas/src/main/java/org/springframework/security/cas/web/CasAuthenticationEntryPoint.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ public final void commence(final HttpServletRequest servletRequest, HttpServletR
9191
*/
9292
protected String createServiceUrl(HttpServletRequest request, HttpServletResponse response) {
9393
return WebUtils.constructServiceUrl(null, response, this.serviceProperties.getService(), null,
94-
this.serviceProperties.getArtifactParameter(), this.encodeServiceUrlWithSessionId);
94+
this.serviceProperties.getServiceParameter(), this.serviceProperties.getArtifactParameter(),
95+
this.encodeServiceUrlWithSessionId);
9596
}
9697

9798
/**

0 commit comments

Comments
 (0)