From d5ee89bb7c1448f4338ce5aa633235cd03811948 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Thu, 19 Jun 2008 15:21:03 +0000 Subject: [PATCH] Correct typo in error message. --- .../security/config/FilterChainProxyPostProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/config/FilterChainProxyPostProcessor.java b/core/src/main/java/org/springframework/security/config/FilterChainProxyPostProcessor.java index 41e281f8a3..1e8dcafcdb 100644 --- a/core/src/main/java/org/springframework/security/config/FilterChainProxyPostProcessor.java +++ b/core/src/main/java/org/springframework/security/config/FilterChainProxyPostProcessor.java @@ -66,7 +66,7 @@ public class FilterChainProxyPostProcessor implements BeanPostProcessor, BeanFac unwrapFilter(previous) + "' have the same 'order' value. When using custom filters, " + "please make sure the positions do not conflict with default filters. " + "Alternatively you can disable the default filters by removing the corresponding " + - "child elements from and not avoiding the use of ."); + "child elements from and avoiding the use of ."); } } }