This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new d50ad76523 Fix a comment typo d50ad76523 is described below commit d50ad76523c43a43b642cb8d8f436ecb42038166 Author: ingpyo <juninpyo...@naver.com> AuthorDate: Tue Sep 5 22:55:24 2023 +0900 Fix a comment typo Changed a comment from "// default CookiePreocessor." to "// default CookieProcessor." to correct a typo. --- java/org/apache/catalina/connector/Request.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/catalina/connector/Request.java b/java/org/apache/catalina/connector/Request.java index 40ec9d9c07..f95095525b 100644 --- a/java/org/apache/catalina/connector/Request.java +++ b/java/org/apache/catalina/connector/Request.java @@ -3056,7 +3056,7 @@ public class Request implements HttpServletRequest { if (context == null) { // No context. Possible call from Valve before a Host level // context rewrite when no ROOT content is configured. Use the - // default CookiePreocessor. + // default CookieProcessor. return new Rfc6265CookieProcessor(); } else { return context.getCookieProcessor(); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org