From 6b127799024dd93c023b564ebb543786419a8096 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Sat, 5 Mar 2005 18:23:04 +0000 Subject: [PATCH] Minor Javadoc corrections --- .../context/HttpSessionContextIntegrationFilter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/acegisecurity/context/HttpSessionContextIntegrationFilter.java b/core/src/main/java/org/acegisecurity/context/HttpSessionContextIntegrationFilter.java index c1ac55f949..ce1bf4d0cf 100644 --- a/core/src/main/java/org/acegisecurity/context/HttpSessionContextIntegrationFilter.java +++ b/core/src/main/java/org/acegisecurity/context/HttpSessionContextIntegrationFilter.java @@ -76,7 +76,7 @@ import javax.servlet.http.HttpSession; * similar clients that will never present the same jsessionid * etc), the {@link #setAllowSessionCreation(boolean)} should be set to * false. Only do this if you really need to conserve server - * memory and are sure ensure all classes using the ContextHolder + * memory and ensure all classes using the ContextHolder * are designed to have no persistence of the Context between web * requests. *

@@ -84,7 +84,7 @@ import javax.servlet.http.HttpSession; *

* This filter MUST be executed BEFORE any authentication procesing mechanisms. * Authentication processing mechanisms (eg BASIC, CAS processing filters etc) - * expect the ContextHolder to be contain a valid + * expect the ContextHolder to contain a valid * SecureContext by the time they execute. *

*