From ad92dbf389b9ea63568359bf4bab7a9f4d6c54f3 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Thu, 17 Jan 2008 11:01:23 +0000 Subject: [PATCH] Minor correction to error message. --- .../security/intercept/AbstractSecurityInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/intercept/AbstractSecurityInterceptor.java b/core/src/main/java/org/springframework/security/intercept/AbstractSecurityInterceptor.java index a52c01b21f..daf8d5be8a 100644 --- a/core/src/main/java/org/springframework/security/intercept/AbstractSecurityInterceptor.java +++ b/core/src/main/java/org/springframework/security/intercept/AbstractSecurityInterceptor.java @@ -215,7 +215,7 @@ public abstract class AbstractSecurityInterceptor implements InitializingBean, A Iterator iter = this.obtainObjectDefinitionSource().getConfigAttributeDefinitions(); if (iter == null) { - logger.warn("Could not validate configuration attributes as the MethodDefinitionSource did not return " + logger.warn("Could not validate configuration attributes as the ObjectDefinitionSource did not return " + "a ConfigAttributeDefinition Iterator"); return; }