This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 4a0c094925 Fix a comment typo
4a0c094925 is described below
commit 4a0c094925f6362914c32dfa2d964615e3e4441c
Author: ingpyo <[email protected]>
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 a38aad0d23..eb07a8c749 100644
--- a/java/org/apache/catalina/connector/Request.java
+++ b/java/org/apache/catalina/connector/Request.java
@@ -3041,7 +3041,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: [email protected]
For additional commands, e-mail: [email protected]