This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new 8b039db797 Formatting - fix line length 8b039db797 is described below commit 8b039db7971d492c68b64522bdfd7f363a71b401 Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Aug 18 13:50:42 2025 +0100 Formatting - fix line length --- java/org/apache/catalina/connector/Request.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/java/org/apache/catalina/connector/Request.java b/java/org/apache/catalina/connector/Request.java index 1416e617fb..fa01f21bc6 100644 --- a/java/org/apache/catalina/connector/Request.java +++ b/java/org/apache/catalina/connector/Request.java @@ -2539,7 +2539,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; @@ -2650,7 +2651,8 @@ public class Request implements HttpServletRequest { /* * There are two independent limits on the number of parts. * - * 1. The limit based on parameters. This is maxParameterCount less the number of parameters already processed. + * 1. The limit based on parameters. This is maxParameterCount less the number of parameters already + * processed. * * 2. The limit based on parts. This is maxPartCount. * --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org