SEC-438: Made afterPropertiesSet() use instance variable instead of static variable.

This commit is contained in:
Ben Alex 2007-05-23 06:35:03 +00:00
parent b52cb3d736
commit ac3b142e4f
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ public class ProviderManager extends AbstractAuthenticationManager implements In
public void afterPropertiesSet() throws Exception {
checkIfValidList(this.providers);
Assert.notNull(this.messages, "A message source must be set");
doAddExtraDefaultExceptionMappings(DEFAULT_EXCEPTION_MAPPINGS);
doAddExtraDefaultExceptionMappings(exceptionMappings);
}
private void checkIfValidList(List listToCheck) {