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
|
||||
public void afterPropertiesSet() {
|
||||
Assert.notNull(authenticationManager, "authenticationManager must be specified");
|
||||
|
||||
if (rememberMeServices == null) {
|
||||
rememberMeServices = new NullRememberMeServices();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue