Skip to content

Commit 12d1aa0

Browse files
Format
Signed-off-by: Tran Ngoc Nhan <[email protected]>
1 parent 546f6c8 commit 12d1aa0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/provider/service/web/Saml2AuthenticationTokenConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ public void setAuthenticationRequestRepository(
8989
}
9090

9191
/**
92-
* Use the given {@code shouldConvertGetRequests} to convert {@code GET} requests. Default is
93-
* {@code true}.
92+
* Use the given {@code shouldConvertGetRequests} to convert {@code GET} requests.
93+
* Default is {@code true}.
9494
* @param shouldConvertGetRequests the {@code shouldConvertGetRequests} to use
9595
* @since 7.0
9696
*/

saml2/saml2-service-provider/src/test/java/org/springframework/security/saml2/provider/service/web/Saml2AuthenticationTokenConverterTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ public void shouldNotConvertGetRequests() {
236236
this.relyingPartyRegistrationResolver);
237237
converter.setShouldConvertGetRequests(false);
238238
given(this.relyingPartyRegistrationResolver.resolve(any(HttpServletRequest.class), any()))
239-
.willReturn(this.relyingPartyRegistration);
239+
.willReturn(this.relyingPartyRegistration);
240240
MockHttpServletRequest request = new MockHttpServletRequest();
241241
request.setMethod("GET");
242242
request.setParameter(Saml2ParameterNames.SAML_RESPONSE,

0 commit comments

Comments
 (0)