Skip to content

Commit 18978e6

Browse files
committed
Fix javadoc parameter name in setMaxActiveAuthorizationRequestsPerSession
1 parent 725f835 commit 18978e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/web/HttpSessionOAuth2AuthorizationRequestRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ void setAuthorizationRequestTimeToLive(Duration authorizationRequestTimeToLive)
179179
* Sets the maximum number of {@link OAuth2AuthorizationRequest} that can be
180180
* stored/active for a session. If the maximum number are present in a session when an
181181
* attempt is made to save another one, then the oldest will be removed.
182-
* @param maxActiveAuthorizationRequests must not be negative.
182+
* @param maxActiveAuthorizationRequestsPerSession must not be negative.
183183
*/
184184
void setMaxActiveAuthorizationRequestsPerSession(int maxActiveAuthorizationRequestsPerSession) {
185185
Assert.state(maxActiveAuthorizationRequestsPerSession > 0,

0 commit comments

Comments
 (0)