SEC-438: Made afterPropertiesSet() use instance variable instead of static variable.
This commit is contained in:
parent
b52cb3d736
commit
ac3b142e4f
|
@ -143,7 +143,7 @@ public class ProviderManager extends AbstractAuthenticationManager implements In
|
||||||
public void afterPropertiesSet() throws Exception {
|
public void afterPropertiesSet() throws Exception {
|
||||||
checkIfValidList(this.providers);
|
checkIfValidList(this.providers);
|
||||||
Assert.notNull(this.messages, "A message source must be set");
|
Assert.notNull(this.messages, "A message source must be set");
|
||||||
doAddExtraDefaultExceptionMappings(DEFAULT_EXCEPTION_MAPPINGS);
|
doAddExtraDefaultExceptionMappings(exceptionMappings);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkIfValidList(List listToCheck) {
|
private void checkIfValidList(List listToCheck) {
|
||||||
|
|
Loading…
Reference in New Issue