mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-05 02:02:15 +00:00
Fix ProviderManager Javadoc typo
Closes gh-8800
This commit is contained in:
parent
dcd2137418
commit
3dc59686fa
@ -213,7 +213,7 @@ public class ProviderManager implements AuthenticationManager, MessageSourceAwar
|
|||||||
((CredentialsContainer) result).eraseCredentials();
|
((CredentialsContainer) result).eraseCredentials();
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the parent AuthenticationManager was attempted and successful than it will publish an AuthenticationSuccessEvent
|
// If the parent AuthenticationManager was attempted and successful then it will publish an AuthenticationSuccessEvent
|
||||||
// This check prevents a duplicate AuthenticationSuccessEvent if the parent AuthenticationManager already published it
|
// This check prevents a duplicate AuthenticationSuccessEvent if the parent AuthenticationManager already published it
|
||||||
if (parentResult == null) {
|
if (parentResult == null) {
|
||||||
eventPublisher.publishAuthenticationSuccess(result);
|
eventPublisher.publishAuthenticationSuccess(result);
|
||||||
@ -230,7 +230,7 @@ public class ProviderManager implements AuthenticationManager, MessageSourceAwar
|
|||||||
"No AuthenticationProvider found for {0}"));
|
"No AuthenticationProvider found for {0}"));
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the parent AuthenticationManager was attempted and failed than it will publish an AbstractAuthenticationFailureEvent
|
// If the parent AuthenticationManager was attempted and failed then it will publish an AbstractAuthenticationFailureEvent
|
||||||
// This check prevents a duplicate AbstractAuthenticationFailureEvent if the parent AuthenticationManager already published it
|
// This check prevents a duplicate AbstractAuthenticationFailureEvent if the parent AuthenticationManager already published it
|
||||||
if (parentException == null) {
|
if (parentException == null) {
|
||||||
prepareException(lastException, authentication);
|
prepareException(lastException, authentication);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user