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

commit 767476afc3d1fd2d2faa4f8ae5e7daf36f675150
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 e42f1bd718..230a7a995b 100644
--- a/java/org/apache/tomcat/buildutil/translate/Utils.java
+++ b/java/org/apache/tomcat/buildutil/translate/Utils.java
@@ -34,7 +34,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