From 5e27b326d25eda331ea909c62805f61cd7cdb36d Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Tue, 26 Feb 2008 13:02:59 +0000 Subject: [PATCH] SEC-685: minor javadoc change --- .../org/springframework/security/util/FilterChainProxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/util/FilterChainProxy.java b/core/src/main/java/org/springframework/security/util/FilterChainProxy.java index 21975bfea4..3fd8ddd08c 100644 --- a/core/src/main/java/org/springframework/security/util/FilterChainProxy.java +++ b/core/src/main/java/org/springframework/security/util/FilterChainProxy.java @@ -80,7 +80,7 @@ import java.util.*; * *

Note the Filter lifecycle mismatch between the servlet container and IoC * container. As described in the {@link DelegatingFilterProxy} JavaDocs, we recommend you allow the IoC - * container to manage lifecycle instead of the servlet container. By default the DelegatingFilterProxy + * container to manage the lifecycle instead of the servlet container. By default the DelegatingFilterProxy * will never call this class' {@link #init(FilterConfig)} and {@link #destroy()} methods, which in turns means that * the corresponding methods on the filter beans managed by this class will never be called. If you do need your filters to be * initialized and destroyed, please set the targetFilterLifecycle initialization parameter against the