diff --git a/web/src/main/java/org/springframework/security/web/authentication/AnonymousProcessingFilter.java b/web/src/main/java/org/springframework/security/web/authentication/AnonymousProcessingFilter.java index fe000d7cf9..03b433919f 100644 --- a/web/src/main/java/org/springframework/security/web/authentication/AnonymousProcessingFilter.java +++ b/web/src/main/java/org/springframework/security/web/authentication/AnonymousProcessingFilter.java @@ -139,12 +139,13 @@ public class AnonymousProcessingFilter extends SpringSecurityFilter implements /** * Controls whether the filter will remove the Anonymous token after the request is complete. Generally * this is desired to avoid the expense of a session being created by {@link - * org.springframework.security.web.context.HttpSessionContextIntegrationFilter HttpSessionContextIntegrationFilter} simply to - * store the Anonymous authentication token.
Defaults to true, being the most optimal and
- * appropriate option (ie AnonymousProcessingFilter will clear the token at the end of each request,
- * thus avoiding the session creation overhead in a typical configuration.
+ * Defaults to true, being the most optimal and appropriate
+ * option – AnonymousProcessingFilter will clear the token at the end of each request,
+ * thus avoiding session creation overhead in a typical configuration.
*
- * @param removeAfterRequest DOCUMENT ME!
*/
public void setRemoveAfterRequest(boolean removeAfterRequest) {
this.removeAfterRequest = removeAfterRequest;