This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 11.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/11.0.x by this push:
     new 6f30237942 Formatting - fix line length
6f30237942 is described below

commit 6f30237942f818b8248ec3baedfa25928afc9e4b
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Mon Aug 18 13:47:58 2025 +0100

    Formatting - fix line length
---
 java/org/apache/catalina/connector/Request.java | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/java/org/apache/catalina/connector/Request.java 
b/java/org/apache/catalina/connector/Request.java
index 88d2c82c78..2b7aab400a 100644
--- a/java/org/apache/catalina/connector/Request.java
+++ b/java/org/apache/catalina/connector/Request.java
@@ -957,8 +957,8 @@ public class Request implements HttpServletRequest {
      * {@inheritDoc}
      * <p>
      * The attribute names returned will only be those for the attributes set 
via {@link #setAttribute(String, Object)}.
-     * Tomcat internal attributes will not be included even though they are 
accessible via {@link #getAttribute(String)}.
-     * The Tomcat internal attributes include:
+     * Tomcat internal attributes will not be included even though they are 
accessible via
+     * {@link #getAttribute(String)}. The Tomcat internal attributes include:
      * <ul>
      * <li>{@link Globals#DISPATCHER_TYPE_ATTR}</li>
      * <li>{@link Globals#DISPATCHER_REQUEST_PATH_ATTR}</li>
@@ -2444,7 +2444,8 @@ public class Request implements HttpServletRequest {
         if (partsParseException != null) {
             Context context = getContext();
             if (context != null && context.getLogger().isDebugEnabled()) {
-                
context.getLogger().debug(sm.getString("coyoteRequest.partsParseException", 
partsParseException.getMessage()));
+                context.getLogger()
+                        
.debug(sm.getString("coyoteRequest.partsParseException", 
partsParseException.getMessage()));
             }
             if (partsParseException instanceof IOException) {
                 throw (IOException) partsParseException;
@@ -2846,7 +2847,8 @@ public class Request implements HttpServletRequest {
         if (parametersParseException != null) {
             Context context = getContext();
             if (context != null && context.getLogger().isDebugEnabled()) {
-                
context.getLogger().debug(sm.getString("coyoteRequest.parametersParseException",
 parametersParseException.getMessage()));
+                context.getLogger().debug(
+                        sm.getString("coyoteRequest.parametersParseException", 
parametersParseException.getMessage()));
             }
             throw parametersParseException;
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to