mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-26 22:02:41 +00:00
Remove null-check inside afterPropertiesSet() since it's never null
This commit is contained in:
parent
2d6051625f
commit
ca76e8d784
@ -164,10 +164,6 @@ public abstract class AbstractAuthenticationProcessingFilter extends GenericFilt
|
|||||||
@Override
|
@Override
|
||||||
public void afterPropertiesSet() {
|
public void afterPropertiesSet() {
|
||||||
Assert.notNull(authenticationManager, "authenticationManager must be specified");
|
Assert.notNull(authenticationManager, "authenticationManager must be specified");
|
||||||
|
|
||||||
if (rememberMeServices == null) {
|
|
||||||
rememberMeServices = new NullRememberMeServices();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user