This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new ab221875a3 Fix a comment typo ab221875a3 is described below commit ab221875a3cd0248ea7a24ab38ed8c699d4d443f 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 a9ba406047..62307c0210 100644 --- a/java/org/apache/catalina/connector/Request.java +++ b/java/org/apache/catalina/connector/Request.java @@ -2894,7 +2894,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