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 3e5b45b342 Fix formatting imported values that have multiple lines 
starting with \t
3e5b45b342 is described below

commit 3e5b45b342d5390b461ff5d46ceace75c3fcbeac
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Mar 1 16:58:15 2023 +0000

    Fix formatting imported values that have multiple lines starting with \t
---
 java/org/apache/tomcat/buildutil/translate/Utils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/org/apache/tomcat/buildutil/translate/Utils.java 
b/java/org/apache/tomcat/buildutil/translate/Utils.java
index 658dfc0243..af2949e5a1 100644
--- a/java/org/apache/tomcat/buildutil/translate/Utils.java
+++ b/java/org/apache/tomcat/buildutil/translate/Utils.java
@@ -29,7 +29,7 @@ import java.util.regex.Pattern;
 
 public class Utils {
 
-    private static final Pattern ESCAPE_LEADING_SPACE = 
Pattern.compile("^(\\s)", Pattern.MULTILINE);
+    private static final Pattern ESCAPE_LEADING_SPACE = Pattern.compile("^( 
)", Pattern.MULTILINE);
 
     private static final Set<String> KEYS_WITH_UNNECESSARY_ESCAPING = new 
HashSet<>();
 


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

Reply via email to